Inside the loop, what does `await` do to the timing of this code?for (const url of urls) { const res = await fetch(url); console.log(res.status); }