Course · Section 16: Asynchronous JavaScript: Promises, Async/Await, and AJAX · Lecture 265: Chaining Promises
Implement an async function `runInOrder(nums)` that awaits each value in turn and returns them collected in order.
+ 1 hidden test run on Submit.
Awaiting inside the loop processes each value in order before moving on.
Run your code to see results.