Not only can we assign values to variables when we initialize them, but we can also change their values throughout our program.
let adjective = "fun";
When the variable adjective is first declared we assigned it the value "fun" above. But as seen below the value can change..
adjective = "clever";
How would you assign the value 7 to the variable x ?