
When requests don't depend on each other, run them in parallel for better performance! Let's fetch multiple users at once.
fetchUser(id) returns a promise for one userfetchAllUsers(ids) that fetches all users in parallelPromise.all() to wait for all requestsSubmit your code to see test results