Tell us what’s happening:
I have been stuck on this problem for a while
Your code so far
// Only change code below this line.
function functionWithArgs(one, two) {
console.log(1 + 2);
}
functionWithArgs(1, 3); // Outputs 3
function functionWithArgs(seven, nine) {
console.log(7 + 9);
}
functionWithArgs(7 + 9); // Outputs 16
// 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(1, 2);
}
functionWithArgs(7, 9): // Outputs 16
**Your browser information:**
User Agent is: <code>Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.86 Safari/537.36</code>.
**Link to the challenge:**
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/passing-values-to-functions-with-arguments