Consider the following method:
public void printEvenNumbers(int n) {
for (int i = 2; i <= n; i += 2) {
System.out.print(i + " ");
}
}
Assume that the method printEvenNumbers(8) appears in a method in the same class. What is printed as a result of the method call?