0 / 60 seg.

What value is obtained when executing the following code?

function sum(a = 2, b = 3) {
  return a + b;
}
console.log(sum());