const fetchData = async () => { try { const res = await fetch('https://api.example.com/data') const data = await res.json() } catch (error) { console.error("error:", error) } console.log("end of async fetching data") } fetchData() console.log("After Fetching data asynchronous")