Learn Introductory JavaScript by Building a Pyramid Generator - Step 9

Tell us what’s happening:

let character = ‘Hello’;
console.log(character);
character = “World”;
let secondCharacter;
secondCharacter= ‘secondCharacter’
console.log(secondCharater);

Your code so far


// User Editable Region

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


// 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 9

Hi @Grace25,

Welcome to the forum! :partying_face:

you’re just missing a single letter. :wink:

Please, what am i missing?

check the spelling of what you put inside the console.log().

1 Like

thank you! so funny i couldnt see this

1 Like

don’t worry, we’re all been there before. :sweat_smile:

1 Like