Which is the correct function call for the following function?

 add(3, 2);
 add();
function(2,3)

You're getting good!

We call an anonymous function by the name of the variable that contains it, then we pass it arguments in case it requires any.