fetch('https://pokeapi.co/api/v2/pokemon/').then(function (response) {
return response.json(); // This returns a promise!
}).then(function (pokemonList) {
console.log(pokemonList); // The actual JSON response
}).catch(function () {
// Error
});