What is the result of the following code?
function square(x = 2) { return x * x; } console.log(square());
2
4
0
16