0 / 60 seg.

What will the following Java code output?

List<String> words = Arrays.asList("Java", "Python", "C++");
String allWords = String.join(", ", words);
System.out.println(allWords);