Learn Introductory JavaScript by Building a Pyramid Generator - Step 6

Tell us what’s happening:

Am trying to reassign my variable called character to the word "world"This is level 6 in freecodecamp llearn javacsript but its telling me sorry, your code doesn’t pass.
my code is
let character = “hello”;
character = “world”;

Your code so far


// User Editable Region

let character = "Hello";
character = "world";


// User Editable Region

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36

Challenge Information:

Learn Introductory JavaScript by Building a Pyramid Generator - Step 6

Hi there and welcome to our community!

After your console.log , assign the value "World" to your character variable.

You have removed the console.log statement. You’ll need to restore that.
Also, make sure you exactly match the string which you’re assigning to character.