Learn Introductory JavaScript by Building a Pyramid Generator - Step 5

Tell us what’s happening:

the character variable initialization should not be changed

Your code so far


// User Editable Region

let developer = "Naomi";
console.log(character);


// User Editable Region

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.3.1 Safari/605.1.15

Challenge Information:

Learn Introductory JavaScript by Building a Pyramid Generator - Step 5

you changed it, where is the character variable now?

The problem here is that the code attempts to print a variable named character, but this variable is not defined in the editable region. The variable that has been defined is developer.

The solution is to change the variable name inside to developer instead of character.