Consider the behavior of a "for" loop in this Java code:
for (int i = 0; i < 3; i++) { System.out.println("Hello"); }
Syntax error
Prints "Hello" infinitely
Prints "Hello" three times
No output