Passing Values to Functions with Arguments 2

Tell us what’s happening:

Your code so far

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

// Only change code below this line.

  var one = 1;
  var two = 2;
  var three = "3";
  var two = (1, 2, 3);

function functionWithArgs(three) {
console.log(16);
}
functionWithArgs(50, 13);

Your browser information:

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

Link to the challenge:
https://www.freecodecamp.org/challenges/passing-values-to-functions-with-arguments