Learn Introductory JavaScript by Building a Pyramid Generator - Step 20

Tell us what’s happening:

it says access your rows array i dont know what to do could someone explain me what to do as i am not able to undderstand
let character = ‘Hello’;
let count = 8;
let rows = [“Naomi”, “Quincy”, “CamperChan”];
console.log(rows[0]);
rows[2] = 10;
console.log(rows[2]);
console.log(rows);

Your code so far


// User Editable Region

let character = 'Hello';
let count = 8;
let rows = ["Naomi", "Quincy", "CamperChan"];
console.log(rows[0]);
rows[2] = 10; 
console.log(rows[2]);
console.log(rows); 

// 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 20

The first line of code here is correct for this challenge but why have you added the lines below it?

Continuing the discussion from Learn Introductory JavaScript by Building a Pyramid Generator - Step 20:

thanks i got it !!!
i understood what i had to do after u said.