Basic JavaScript - Passing Values to Functions with Arguments

I’m being asked to call the function with two numbers but I do that.

I assume It is a bug.


function functionWithArgs(x,y){
    console.log(x+y)
}

functionWithArgs(1+3)

Please post a link to the challenge.

You should have a comma here not a plus sign

1 Like