Reorder the follow code.
number = 0
number -= 2
while ( number < 101):
print(number)
What will the following code output?
Categorize if the loop is infinite or not
Infinite
Finite