Quiz Question 1 of 5
In the following code:
def add(first_number, second_number):
return first_number + second_number
result = add(40, 2)
In the function definition what term can be used to best refer to "first_number" and "second_number"
Choose the correct answer below: