// "Replace with 'computeIfAbsent' method call" "true" import java.util.ArrayList; import java.util.List; import java.util.Map; public class Main { public void testMap(Map<String, List<String>> map, String key, String value) { List<String> list = map.get(key); if(list == nul<caret>l) { list = new /*create new ArrayList*/ ArrayList<>(); // and put it map.put(key, list); } list.add(value); } }