async function inParallel() { const promise1 = printNumber1(); const promise2 = printNumber2(); const number1 = await promise1; const number2 = await promise2; } //Output: Number2 is done, Number1 is done