Menu
×
×
Correct!
Exercise:Complete the array method that will allow you to run a function on each item in the array and return a new array.
const myList = myArray.@(3)((item) => <p>{item}</p>)
const myList = myArray.map((item) => <p>{item}</p>)
Not CorrectClick here to try again. Correct!Next ❯ |