What does the loop output? i = 1 while i <= 5: if i % 2 == 0: print(f"{i} is even") else: print(f"{i} is odd") i += 1