The purpose of the following code is to print the numbers from 0 to 9. Run this code, analyze its output, and then debug it. (If you want to undo your changes to the code, you can click the Reset button.) 1234 count = 0 while count < 10 print("number", count) count = count + 1 Reset How can you fix the error? 1 point Add a missing colon (:) Change indentation Remove the quotation marks around number Spell a variable correctly