✅ Problem:
Given a list of Employee objects, filter all employees with a salary > 60,000 and sort them by name (ascending). Return the result as a list.
💡 Hint:
Use filter(), sorted(), and collect().
🔧 Sample Code:
List<Employee> result = employees.stream()
.filter(e -> e.getSalary() > 60000)
.sorted(Comparator.comparing(Employee::getName))
.collect(Collectors.toList());