// "Replace loop with 'List.replaceAll()'" "true" import java.util.List; class Main { void modifyList(List list) { Random random = new Random(); for (int i = 0; i < list.size(); i++) { list.set(i, 42); } } }