How do i use an assignment operator

Tell us what’s happening: im having a issue with using the assignment operator

You should use character twice in your code.
2. You should use the assignment operator to reassign character.
4. Your character variable should have the value “World”.

Your code so far


// User Editable Region

let programmer = "character";
programmer = "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/133.0.0.0 Safari/537.36 Edg/133.0.0.0

Challenge Information:

Learn Introductory JavaScript by Building a Pyramid Generator - Step 6

Hi,
there is no variable called programmer. As the instructions say, you have a character variable, and you should reassign that.
I suggest you reset the step to get the original code back, then reassign your character variable.
Good luck!