async function printBio(githubUsername) { let resp = await fetch( `https://api.github.com/users/${githubUsername}` ); let profile = await resp.json(); console.log(profile.bio); }