I am struggling to answer this question i believe my rows array is incorrect.
Your code so far
const character = "#";
const count = 8;
const rows = [];
for (let i = 0; i < count; i = i + 1) {
rows.push(i);
}
let result = ""
// User Editable Region
for (const value of row) {
rows.push(result);
}
// User Editable Region
console.log(result);
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36
Challenge Information:
Learn Introductory JavaScript by Building a Pyramid Generator - Step 41
Right now you are assigning each value in rows to a variable named value. This is the new variable created to temporarily hold each value in the collection rows
Since rows is a collection of rows, then when you iterate over each one it makes sense to call the variable row
let numbers = [1,2,3]
for (const number in numbers) {
console.log(number)
}