Determine the result

Report a typo

What does this code print?

int i = 5;
do {
    i++;
    System.out.print(i + " ");
    i -= 2;
} while (i > 1);
Select one option from the list
___

Create a free account to access the full topic