Learn Introductory JavaScript by Building a Pyramid Generator - Step 13

Tell us what’s happening:

I really don’t understand what this is even for. Please explain to me what this is and what the problem is because it says string “teacher” to the profession variable.

Your code so far

let character = "Hello";

// User Editable Region

let profession = 'teacher';
logconsole(profession);
profession = "teacher"
let age =;
logconsole(age);
profession = age;

// User Editable Region

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36

Challenge Information:

Learn Introductory JavaScript by Building a Pyramid Generator - Step 13

please reset and only add the exact 2 lines of code they requested.
One to declare a profession variable and set its value to ‘teacher’ and another to declare age without any initialization.

An example of how to declare something and initialize it is already in the code here:

If you want to declare something without initializing it then don’t add the equal sign and the value after that.

Hi there!
Also you need to remember the console statement Syntex.