Tell us what’s happening:
Error mssg: You should assign the value of the character variable to your secondCharacter variable. Don’t forget your semicolon.
I’ve used “world” and “Hello” which are the values of the first character, same error mssg, Ive also tried secondCharacter = “character”
Your code so far
let character = 'Hello';
console.log(character);
character = "World";
let secondCharacter;
// User Editable Region
secondCharacter = "World";
console.log(secondCharacter);
// User Editable Region
console.log(secondCharacter);
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Safari/537.36
Challenge Information:
Learn Introductory JavaScript by Building a Pyramid Generator - Step 11