Arrow Functions

What will this code log to the console?
const counter = {
  count: 0,
  increment: function() {
    setInterval(() => {
      console.log(++this.count);
    }, 1000);
  }
};

counter.increment();
Next Question (11/20)