Learn Introductory JavaScript by Building a Pyramid Generator - Step 21

Tell us what’s happening:

let rows =[1, 2, 3] ;
rows[2] = 10;
console.log( rows); // prints [1, 2, 3]

Your code so far

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

// User Editable Region

let  rows =[1, 2, 3] ;
 rows[2] = 10;
console.log( rows);  // prints [1, 2, 3]   

// User Editable Region

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:135.0) Gecko/20100101 Firefox/135.0

Challenge Information:

Learn Introductory JavaScript by Building a Pyramid Generator - Step 21

Please Tell us what’s happening in your own words.

Learning to describe problems is hard, but it is an important part of learning how to code.

Also, the more you say, the more we can help!

Why are you redeclaring rows that was not asked for.