What is the type of the values in this map, and is each value list modifiable?Map<Character,List<String>> m = Stream.of("apple", "avocado", "banana") .collect(Collectors.groupingBy(s -> s.charAt(0))); m.get('a').add("extra");