What does this code print?List<Integer> list = new ArrayList<>(List.of(1,2,3,4));\nIterator<Integer> it = list.iterator();\nwhile (it.hasNext()) { if (it.next() % 2 != 0) it.remove(); }\nSystem.out.println(list);