let country = "United States"; // country to search for let url = `http://www.radio-browser.info/webservice/json/stations/bycountryexact/${country}`; fetch(url) .then(response => response.json()) .then(data => { console.log(data); // display returned data in console }) .catch(error => console.error(error)); let language = "English"; // language to search for let url = `http://www.radio-browser.info/webservice/json/stations/bylanguage/${language}`; fetch(url) .then(response => response.json()) .then(data => { console.log(data); }) .catch(error => console.error(error)); let tag = "pop"; // tag to search for let url = `http://www.radio-browser.info/webservice/json/stations/bytag/${tag}`; fetch(url) .then(response => response.json()) .then(data => { console.log(data); }) .catch(error => console.error(error));