I cannot for the life of me figure out what I need to change to get past the last test on the " Basic JavaScript: Passing Values to Functions with Arguments" challenge.
I have:
function functionWithArgs(a, b) {
console.log(a + b);
}
functionWithArgs:functionWithArgs(1,2);
The test that I cannot seem to understand is this: " You should call
functionWithArgs
with two numbers after you define it."
I thought I was “calling” the function in my 5th line.