correct the loop:
# should count down from 10 to 1 and then print "blast off!" for i in range(10, 1): print(i) print("blast off!")