Learn Introductory JavaScript by Building a Pyramid Generator - Step 21

Tell us what’s happening:

my answer is correct it did not move to next session

Your code so far


let rows = ['Naomi', 'Quincy', 'CamperChan'];
console.log(rows);
rows [2] = 10;
console.log(rows);

// User Editable Region



// 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/127.0.0.0 Safari/537.36

Challenge Information:

Learn Introductory JavaScript by Building a Pyramid Generator - Step 21

please click reset and try this one again.
You have changed code on line 4 which the test doesn’t expect from you.
Once you reset, just add the requested code.
Make sure to not leave any space between the bracket notation and the variable name rows.

I tried it like this and worked:

Mod Edit: SOLUTION REMOVED