fetch("https://dog.ceo/api/breeds/image/random/10") .then((response) => response.json()) .then((data) => data.message) .then(arrayOfLinks => console.log(arrayOfLinks))