Passing Values to Functions with Arguments 1

Tell us what’s happening:

why doesn’t this work

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(one, two) {

  console.log(one + two);
}

functionWithArgs(1 + 2);


Your browser information:

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

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

When you call functionWithArgs you don’t add the arguments there. The arguments are added in your function. Look at how you passed your arguments to your function.