Learn Introductory JavaScript by Building a Pyramid Generator - Step 11

Tell us what’s happening:

i switched the varable to wrold from Test but i am stuck now i am very new to this and have noone helping me with this test

Your code so far

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

// User Editable Region

secondCharacter = "World";

// User Editable Region

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/126.0.0.0 Safari/537.36 Edg/126.0.0.0

Challenge Information:

Learn Introductory JavaScript by Building a Pyramid Generator - Step 11

instead of typing “World”, they want you to type character
(the character variable contains the string “World” so that is what you need to type when you reference it)

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.