Hello, I don’t know if there is a technical issue or what but when I’m clicking on run the test it doesn’t run, however when I clicked on get help or reset the code it did
Your code so far
function functionWithArgs(1,2)
{
console.log(1+2);
}
functionWithArgs(7,9);
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36
Challenge: Passing Values to Functions with Arguments
function functionWithArgs(1, 2) {
console.log(1+2);
}
Doesn’t make sense. “1” and “2” aren’t names of parameters that get assigned values when you run functionWithArgs, they’re numbers. You can’t assign 7 to 1, or 9 to 2, so this can’t work: