Learn Introductory JavaScript by Building a Pyramid Generator - Step 24

Tell us what’s happening:

let rows = [“London”, “New York”, “Mumbai”];
console.log(rows[rows.length - 1]);
let rows[ “London”, “New York”, “Mexico City” ]
Hello. There is a problem with my code. Please, help me.

Your code so far

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

// User Editable Region

let rows = ["London", "New York", "Mumbai"];
console.log(rows[rows.length - 1]); 
let rows[ "London", "New York", "Mexico City" ]

// User Editable Region

console.log(rows);

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 OPR/114.0.0.0

Challenge Information:

Learn Introductory JavaScript by Building a Pyramid Generator - Step 24

Do not interfere with default code unless you’re asked to. You will run into more problems. I suggest you first reset the lesson then form the cities array with all necessary values, then I’ll guide you on how to go about with the rest of the steps.

1 Like

Start by declaring a cities variable

You are asked to create a variable called “cities” but you have called it “rows”.

Then log that variable to the console.

You need to send “cities” to the console but you are printing the last element of the array.

2 Likes

Thanks. It has hepled me quickly solve the challenge.

1 Like