0 / 60 seg.

What will be the output of the code?

let count = 0;
const intervalID = setInterval(() => {
  count++;
  console.log(count);
  if (count === 5) {
    clearInterval(intervalID);
  }
}, 1000);