Write an async function getUser(id) that awaits fetchUserData(id) (provided — it rejects for id <= 0) and uses try/catch for error handling. If the fetch fails, return a default object { name: 'Guest' }.
Click Run to test your code