Hello, you actually need to go back to Step 7 so you have the array. That step calls for you to create an array called images
by iterating through the animals
object with a for..in
loop.
If you click the hint for that step, it gives an example of the syntax and idea behind it. Notice in the sample they provided, you’re pushing JSX to the array. So that step wants you to create all the <img ..attributes.. />
elements with attributes
being the key, className, src, etc. etc. that they mention in that step.
Once you have that array, then you can move to step 8 and change animalFacts
by putting the array you made into the div you already added like you would any other variable.
Let me know if you need more details and/or hints