One of the previous tasks says that you can’t redefine a variable once you make it “let” something. But here we are redefining the variable value after “let”
// Setup
let myStr = "Jello World";
// Only change code below this line
myStr = "Hello World"; // Change this line
// Only change code above this line
You often need to change the value stored in a variable. Redeclaring a variable in the same scope is typically a mistake. JS permits the first while preventing the second if you use let.