Consider recursive process.nextTick calls. What happens to the event loop, and why is this behavior considered a footgun?function loop() { process.nextTick(loop); } loop();