Node.js - Timers and Scheduling
Consider this code snippet:
let timerId = setInterval(() => console.log('Tick'), 500);
setTimeout(() => clearInterval(timerId), 1600);
What will be the output?