Tell us what’s happening:
It says I should use the bracket notion on the rows array again. I went based off the example given, but it still says it isn’t correct. Can anyone lead me towards the right direction?
Your code so far
let character = 'Hello';
let count = 8;
let rows = ["Naomi", "Quincy", "CamperChan"];
// User Editable Region
console.log(rows[0]);
rows[3] = 10;
console.log(rows[3]);
// User Editable Region
Your browser information:
User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.6.1 Safari/605.1.15
Challenge Information:
Learn Introductory JavaScript by Building a Pyramid Generator - Step 21