Passing Values to Functions with Arguments too

Tell us what’s happening:

What am I missing?

Your code so far


// Example
function ourFunctionWithArgs(a, b) {
  console.log(a - b);
}
ourFunctionWithArgs(10, 5); // Outputs 5

// Only change code below this line.



function functionWithArgs(a, b) {
   console.log(a + b);    
}
functionWithArgs(10, 2);

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/18.17763.

Link to the challenge:
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/passing-values-to-functions-with-arguments

I tested it and it is working ,refresh the page and try again .

Thank you. I opened it in a Mozilla instead of Edge and it worked as well.