Learn Introductory JavaScript by Building a Pyramid Generator - Step 37

Tell us what’s happening:

i think I’m missing something from my code and all the other help board questions have different issues.

Your code so far

const character = "#";
const count = 8;
const rows = ["count"];


// User Editable Region

for (let i = 0; i < count; i = i + 1) {
console.log("i");
}


// User Editable Region

Your browser information:

User Agent is: Mozilla/5.0 (X11; CrOS x86_64 14541.0.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Safari/537.36

Challenge Information:

Learn Introductory JavaScript by Building a Pyramid Generator - Step 37

Hello there and welcome to the forum.
quote=“jaded298, post:1, topic:708114”]
("i")
[/quote]
Remove the quotation marks that is nesting your i iterator.

hi i removes the quotation marks but im still coming up with an error ,is there anything else i might be missing ?

Hi there!

Post your updated code here.