0 / 60 seg.

What is the result of the following code?

function counter() {
  let count = 0;
  return function () {
    count++;
    return count;
  };
}
const increment = counter();
console.log(increment() + increment());