What will be the result after the following code is executed, assume the code has been compiled?
int counter = 1;
final int MAX = 7;
while (counter <= MAX){System.out.print(counter + " ")counter = counter - 2;}
A. The program displays: 1 3 5 7
B. The program displays value: 7 5 3 1
C. The loop cannot run.
D. The loop is infinite.