Learn Introductory JavaScript by Building a Pyramid Generator - Step 20

Tell us what’s happening:

// running tests
You should use bracket notation on the rows array again.
You should have a second console.log statement in your code.
// tests completed
// console output
Naomi
10
[ ‘Naomi’, ‘Quincy’, 10 ]

Your code so far

let character = 'Hello';
let count = 8;
let rows = ["Naomi", "Quincy", "CamperChan"];

// User Editable Region

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

Challenge Information:

Learn Introductory JavaScript by Building a Pyramid Generator - Step 20

1 Like

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!

Welcome to the forum @nicolaskateann06

Please remove the console.log below as the instructions did not ask for this.

Happy coding

1 Like