What is the output of the following code? int x = 5; do { System.out.println("x: " + x); x--; } while (x > 0);