0 / 60 seg.

What is the result of the following code?

function square(x = 2) {
  return x * x;
}
console.log(square());