Learn Introductory JavaScript by Building a Pyramid Generator - Step 37

Tell us what’s happening:

this is my code:
for(let i=0; i<8;i=i+1){
console.log(i);
}
in step 37 this was the required what is wrong with the code

Your code so far

const character = "#";
const count = 8;

// User Editable Region

const rows = [];

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


// 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/126.0.0.0 Safari/537.36 Edg/126.0.0.0

Challenge Information:

Learn Introductory JavaScript by Building a Pyramid Generator - Step 37

Hi there! Why did you change this? The task has no instructions to modify the existing code in this step

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.