0 / 60 seg.

What is the output of this enhanced "for" loop in Java?

String[] names = {"Alice", "Bob", "Charlie"};
for (String name : names) {
    System.out.println(name);
}