Given the following JavaScript function, what are the two entries (item1, item2) on the first line of the function called?

function sumup (item1, item2) {

var temp;

temp = item1 + item2;

return temp;

}