What will be the output of the following code?
function multiply(a, b) { return a * b; } console.log(multiply(2, 3));
12
9
6
5