What is the result of the following expression?
function multiply(a, b = 2) { return a * b; } console.log(multiply(3));
SyntaxError
6
9
5