Learn Introductory JavaScript by Building a Pyramid Generator - Step 27

Tell us what’s happening:

I have no idea how to do this:
You should use let to declare your variable called popped.
3. You should call the .pop() method.
4. You should call the .pop() method on your rows array.
5. You should log your popped variable.

It looks like I have to use let twice??

Your code so far

let character = 'Hello';
let count = 8;

// User Editable Region

let rows = ["Naomi", "Quincy", "CamperChan"];
rows.push("freeCodeCamp");
let rows(popped);
rows.pop(popped);
console.log(rows);

// User Editable Region

Your browser information:

User Agent is: Mozilla/5.0 (iPhone; CPU iPhone OS 17_6_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.6 Mobile/15E148 Safari/604.1

Challenge Information:

Learn Introductory JavaScript by Building a Pyramid Generator - Step 27

this is an example of how to declare a variable called character and initialize its value to a string.

So if you need to declare a variable called popped then, what should you be writing?