Default Parameters

What will be logged to the console? function multiply(a, b = 2) { return a * b; } console.log(multiply(5));
Next Question (5/21)