fetch(`https://restcountries.eu/rest/v1/all`) .then((res) => { return res.json() }) .then((values) =>{ let array = values .map(x => {return {name: x.name, code: x.alpha3Code};}) console.log(array.length) })