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;
}
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…