Analyze the for loop in this Java code:
for (int n = 1; n <= 3; n++) { System.out.println(n); }
Prints numbers 1 to 3
No output
Infinite loop
Prints numbers 1 to 2