We can change variable values, but we can't change their types. Once a variable has a certain type, it stays that way.
After we've initialized age, what value could we reassign to it?
That's it! We've declared the age variable as a double, meaning that it can only hold double values.
Whoops! We can only reassign a value of the exact same type.