What will the following Java code output?
List<String> words = Arrays.asList("Java", "Python", "C++");
String allWords = String.join(", ", words);
System.out.println(allWords);
What will the following Java code output?
List<String> words = Arrays.asList("Java", "Python", "C++");
String allWords = String.join(", ", words);
System.out.println(allWords);