0 / 60 seg.

What would be the result of running this code?

function add(x = 1, y = 2) {
  return x + y;
}
add();