for count = 10:-1:1 disp(count); end disp('Blast off!')

The code above produces this output:

10 9 8 7 6 5 4 3 2 1 Blast off!

Rewrite the for loop as a while loop.