What is the result of the following code?
function sum(a, b) { return a + b; } console.log(sum(3, 4));
"7"
undefined
"34"
7