Javascript event queue execution order.. Please give the o/p of gthe snippet with reasoning

I have come again with a new code snippet..Please predict the o/p along with the event queue reasoning..i ran the snippet and i know the o/p but i just want to understand the event queue working and what gets higher preference and logs first..

Seems like some people got offended by my last POST .I had just asked for an explanation how the internals of event queue works in that particular code snippet..

Anyways here is the new snippet..

console.log("Start");

setTimeout(() => console.log("Timeout 1"), 0);

async function asyncFunc() {
  console.log("Async Start");
  await new Promise((resolve) => setTimeout(() => resolve(), 0));
  console.log("Async End");
}

asyncFunc();
Promise.resolve().then(() => console.log("Promise 1"));
setTimeout(() => console.log("Timeout 2"), 0);
console.log("End");

Please predict the o/p along with your reasoning.. for the order (microtask queue, callback queue)

Thanks in advance…