How many parameters go into the function sum?

function sum(first, second){
var result = first + second;
return result;
}
JavaScript

1

0

3

2

2