0 / 60 seg.

What will be the output of the following code?

function square(number) {
  return number * number;
}
let result = square(square(3));
console.log(result);