Learn Introductory JavaScript by Building a Pyramid Generator - Step 43

Having the same issue that others have had with this step, but still can’t figure out what I am doing wrong. Seems I have the same code that others have posted?? Thanks very much for your help!

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

for (let i = 0; i < count; i = i + 1) {
  rows.push(i);
}

let result = ""
for (const row of rows) {
   result = result + row;
    result=result+"\n"+row;
}

Please put the link to the step back in your post. Thanks

I added it a link to the step.

Welcome to the forum @jvondungen

Here is a recent post you may find helpful.

Happy coding

Hello, I finally solved this step, but want to share that the “Example” is misleading and all of the hints are sort of cryptic. Understand you don’t want to have “spoiler” solutions on the forum, but people are trying to learn and stumping them could just cause them to abandon this platform. Not the first time the instructions have been a little misleading…

It would help if you explain how the instructions were misleading to you