function addNumbers(num1,num2){
    alert(num1 + num2);
}


The addNumbers() function has two parameters (num1 and num2).

MINI-EXERCISE:
change the arguments that are passed into addNumbers().