What is the result of the following code?
function multiply(a, b = 1) { return a * b; } console.log(multiply(5));
0
5
1
"5"