Learn Introductory JavaScript by Building a Pyramid Generator - Step 61

Tell us what’s happening:

Hola, buenas!
Estoy un poco perdido con el código este, me sigue saliendo el mensaje de " You should still call your padRow function."
Y me está estresando bastante, porque por más que lo intento de mil maneras, he revisado el foro pero no sé por qué no lo entiendo este punto…
Espero podáis ayudarme a resolverlo.
Gracias!

Your code so far

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


// User Editable Region

function padRow() {
  return character.repeat();
}

// User Editable Region

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

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

console.log(result);

Your browser information:

El agente de usuario es: Mozilla/5.0 (Windows NT 10.0; Win64; x64) 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 61

Hi there!

The instructions is asking you:
Remove the name parameter from your function declaration, then remove your “CamperChan” string from the padRow call.

Also, remove both console.log from the padRow function.

You have deleted all your code for padRow function, and you added unnecessary code that is not asked in the challenge instructions. Reset your challenge step and follow the instructions.

But i tried this… I have seen that people said that they had to put that on and it worked for some, I have reset that code again, but I can’t find it. I’ll keep thinking about it to see if I can understand it.

function padRow() {
const test = “Testing”;
return test;
}

Now I didn’t delete the entire code, but I deleted the console.log and the name of padRow, but really, I think it’s because I’m already thick that I can’t find it. Sorry for the inconvenience.

Yesssssssssssssssssssssssssssssss, only one things was wrong!!!
Thnks for the help!