0 / 60 seg.

Evaluate the do-while loop in this Java code:

int n = 6;
do {
    System.out.println(n);
    n++;
} while (n <= 5);