(03.03 MC)
Read the following code:
n = 3
while (n <= 5) :
print (n)
n = n + 1
What output would be produced for the given values of n? (5 points)

345

1 2 3 4 5

0 1 2 3 4

234