setTimeout(), setInterval(), and requestAnimationFrame()

What potential issue exists with this setInterval implementation?
setInterval(() => {
  console.log('Tick');
}, 1000);
Next Question (3/20)