JavaScript by Building a Pyramid Generator step 45

I am stuck here please i need help
https://www.freecodecamp.org/learn/javascript-algorithms-and-data-structures-v8/learn-introductory-javascript-by-building-a-pyramid-generator/step-45

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

you need to update the argument of push

also please

If you have a question about a specific challenge as it relates to your written code for that challenge and need some help, click the Help button located on the challenge. This button only appears if you have tried to submit an answer at least three times.

The Help button will create a new topic with all code you have written and include a link to the challenge also. You will still be able to ask any questions in the post before submitting it to the forum.

Thank you.

sorry how do i update the push argument

you need to put the cursor where the current argument is, use backspace if there is something extra to remove, and type the new argument

rows.push(character);
~character.repeat(i);
it not working

you did not change the argument of push
do you know where the argument of push is?

i think i don’t know

when you call a function or method you write the () next to the name of the function/method, and write the arguments passed to the function in the parentheses, that’s what you need to change

sorry I’m busy with work that’s why I can’t reply fast I need to restart my code so I can get it correctly