A variable that can hold a null value is called nullable.

Can you declare a nullable variable by adding a question mark to the end of the variable's type?

Sweet! We can set number to null because we added a question mark when declaring the variable.

Almost! Here's a hint: we'll need to declare the variable by giving it a name and its type, before adding the question mark.