When a variable is declared with the let keyword, you can reassign (or change the value of) that variable later on. In this example, the value of programmer is changed from "Naomi" to "CamperChan".
Example Code
let programmer = "Naomi";
programmer = "CamperChan";
Note that when reassigning a variable, you do **not** use the `let` keyword again.
After your `console.log`, assign the value `"World"` to your `character` variable.
Does any one know how to do this step? Thanks for everyones' help :grinning:
Thanks for clear update. Let me explain some concepts around what youāre tying to accomplish.
The let keyword just declares (creates a new) variable.
The = operator assigns a value to it.
So, you can do that in 2 steps like: let name; // declared a variable name, but it has no value yet. (undefined). name = "Steve"; // assign the value āSteveā to it
You can also do this in one step: let name = "Steve"; // created a variable called name with the value āSteveā
Now, if you log that to the console ( with the console.log function) console.log(name); // You will see Steve
At this point, if you want to change the value of name, you can just assign another value to overwrite āSteveā like this: name = "John";
So, to verify that youāve changed name to have a new value, John, you can console log name again; console.log(name); // Now you will see John