Build a Shape Manager - Step 50

Tell us what’s happening:

I can’t figure out what’s wrong with step 50. I’ve already made some changes, but nothing has helped it pass validation.

Your code so far

<!-- file: index.html -->

/* file: styles.css */

/* file: index.ts */
// User Editable Region

  for (const [, input] of Object.entries(propertyInputs)) {
    input.oninput = handleInput;
  }
  

// User Editable Region

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:151.0) Gecko/20100101 Firefox/151.0

Challenge Information:

Build a Shape Manager - Step 50

GitHub Link: freeCodeCamp/curriculum/challenges/english/blocks/workshop-shape-manager/6915ab1afa7f7d7ecaef5050.md at main · freeCodeCamp/freeCodeCamp · GitHub

Hi @erdnafpaserip,

Were you asked to write anything in the body of the loop?

Happy coding

hi @dhess ,

the task was:

To finally show the calculations, loop through the propertyInputs object by using a for...of loop with Object.entries(). You can ignore the key by using a comma before input in the loop declaration.

Right, so where in there does it say to write this?