// "Replace with collect" "true" import java.util.*; public abstract class Collect implements Collection{ class Person { String getName() { return ""; } } void collectNames(List persons){ for (Person person : persons) { add(person.getName()); } } }