The variable used to iterate through values isn't available outside of a for loop's braces ({}). 

Can you make sure number is only used inside the for loop?

Great job! If we try accessing number outside of the braces ({}), our program won't work.

Oh noes! We'll need to declare the function first and only call number inside the loop's braces ({}).