Learn Introductory JavaScript by Building a Pyramid Generator - Step 11

Tell us what’s happening:

Hello, I have a hard time with this code step 11, what could be possibly wrong, also my question is may i just delete the previous steps or just keep them there?

let character = 'Hello";
console.log(character);
character = “World”;
let secondCharacter;
secondCharacter = character;
console.log(secondCharacter);

Your code so far


// User Editable Region

let character = 'Hello";

// User Editable Region

console.log(character);
character = "World";
let secondCharacter;
secondCharacter = character;
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/132.0.0.0 Safari/537.36

Challenge Information:

Learn Introductory JavaScript by Building a Pyramid Generator - Step 11

Hi there and welcome to the forum!
Look at the instructions again:

To see this in action, change your secondCharacter assignment from "Test" to your character variable.

In other words, you just have to replace "Test" with character.

Please reset the step to remove the extra code and try again

In the steps you have only necessary code, so no need to delete it.