In the following code we are both defining and then calling a function. What does `8` represent in this example?
function findSum(a, b) {
return a + b;
}
var sum = findSum(5, 8);
console.log(sum);
Selecciona una de las siguientes respuestas posibles: