Event Loop & Microtasks

In Node.js, what is the order of execution?
queueMicrotask(() => console.log(1));
Promise.resolve().then(() => console.log(2));
process.nextTick(() => console.log(3)); // Node.js
Next Question (5/20)