0. Student 객체를 이용하여 ArrayList를 이용한 컬렉션을 제작합니다.들어가는 데이터 : - 이명희, 92 - 장보고, 65 - 박민수, 78 - 김철수, 85 - 최지우, 921. 점수가 80점 이상인 학생의 이름만 출력하세요.📌 제출 답안studentList.stream() .filter(s -> s.getScore() >= 80) .forEach(s -> System.out.print(s.getName() + " "));System.out.println();📌 교수 답안List highScores = studentList.stream() .filter(s -> s.getScore() >= 80) .map(Student::getName) .collect(Collectors.toList..