1. Fetch a random image from the Dog API again (https://dog.ceo/api/breeds/image/random)
2. Access the DOM and insert the URL you got from the API as an image `src` property (probably easiest if you create the image completely here in the JS and add it as the innerHTML of another element on the DOM) */
8
9
10
11
12
13
1
2
3
4
5
6
7
API as an image `src` property (probably easiest if
you create the image completely here in the JS and add
it as the innerHTML of another element on the DOM)
*/
/**
Challenge:
1. Fetch a random image from the Dog API again
(https://dog.ceo/api/breeds/image/random)
2. Access the DOM and insert the URL you got from the