how to handle fetch errors
const response = await fetch(url);
if (response.status >= 200 && response.status <= 299) {
const jsonResponse = await response.json();
console.log(jsonResponse);
} else {
// Handle errors
console.log(response.status, response.statusText);
}