What will the following code output? int i = 0; while (true) { if (i == 3) break; System.out.println("i: " + i); i++; }