Learn Introductory JavaScript by Building a Pyramid Generator - Step 6

Tell us what’s happening:

I am putting the word “character” two times as requested but still, I am not able to pass.

Your code so far


// User Editable Region

let character = "Hello";
console.log = "World";
World = "character";

// User Editable Region

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36

Challenge Information:

Learn Introductory JavaScript by Building a Pyramid Generator - Step 6

hi there!
the instructions are asking you to: 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.

you have modified your console.log that was previously correct. and also you have not assigned the string "World" to the character variable.