Now that you're getting data from a JSON API, you can display it in the HTML.
You can use a <code>forEach</code> method to loop through the data since the cat photo objects are held in an array. As you get to each item, you can modify the HTML elements.
First, declare an html variable with <code>var html = "";</code>.
Then, loop through the JSON, adding HTML to the variable that wraps the key names in <code>strong</code> tags, followed by the value. When the loop is finished, you render it.
Add a <code>forEach</code> method to loop over the JSON data and create the HTML elements to display it.
Here is some example JSON
<blockquote>[</br> {</br> "id":0,</br> "imageLink":"https://s3.amazonaws.com/freecodecamp/funny-cat.jpg",</br> "altText":"A white cat wearing a green helmet shaped melon on its head. ",</br> "codeNames":[ "Juggernaut", "Mrs. Wallace", "Buttercup"</br> ]</br> }</br>]</blockquote>
</section>
## Tests
<sectionid='tests'>
```yml
- text: Your code should store the data in the <code>html</code> variable