Learn Introductory python by Building a Pyramid Generator - Step 51

Tell us what’s happening:

i am trying to write code but , im not understanding a little bit. i want a help.

Your code so far


// User Editable Region

function(james,lasol,vahin)
return(function are cool!)











// User Editable Region

const call = padRow();
console.log(call);


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

let result = ""

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

console.log(result);

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36

Challenge Information:

Learn Introductory JavaScript by Building a Pyramid Generator - Step 51

the pyramid generator is only available on the JavaScript curriculum, not for Python, can you explain more what you are asking for help for?

Are you on Step 51? You have some code in here from another step, please delete it or reset the Step to get back to the original starting code.

Use the return keyword to have your function return the string "Hello!".

You will need to modify the example code to implement the instructions.