Https://www.freecodecamp.org/learn/javascript-algorithms-and-data-structures/basic-javascript/passing-values-to-functions-with-arguments

Tell us what’s happening:
I am having some challenges with this section.

Your code so far
function functionWithArgs(one, two) {
console.log(1 + 2);
console.log(7 + 9);
}
functionWithArgs(1,2);

After running, the response has this comment :
functionWithArgs(1,2) should output 3.

Your browser information:

Link to the challenge:

your console.log it should be (one + two)

Your function does accept 2 arguments, but you did not add the two arguments together.
It should be:
function functionWithArgs(one, two) {
console.log(one + two)
}
functionWithArgs(1, 2)