// "Replace with addAll" "true" import java.util.*; public class Collect { class Person {} void collectNames(List persons){ List names = new ArrayList<>(); names.addAll(persons); } }