// "Replace with collect" "true" import java.util.ArrayList; import java.util.List; public class Main { public static List test() { List strings = new ArrayList<>(); for(int x = 0; x < 10; x++) { strings.add(null); } return strings; } }