**Tell us what’s happening: The test does not seem to be passing
Describe your issue in detail here.
I am a bit confused on what the question seems to be asking " You should call functionWithArgs with two numbers after you define it." Any help would be appreciated :).
This isn’t how you call this function. (also note that I removed the extra space between the function name and the ()s)
Here your function is defined as taking two arguments separated by a comma. You need to make your function calls match this pattern. You need two inputs separated by a comma.
Does it work when you try it? It looks almost reasonable to me. You have an extra comma in your console.log. You need to call console.log with a single argument, the sum of your two arguments to functionWithArgs.