Help I've been stuck on this problem

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

You hanve so many function declarations with the same name inside your file (I count 3 different functionWithArgs).

What will happen is that the last one will override the previous declaration. In JS functions are put into memory before being executed.

For example:

function example (one, two) {
console.log(1 + 2);
}
example(1, 3);  // 'I have been overwritten'

function example (seven, nine) {
console.log(7 + 9);
}
functionWithArgs(7 + 9); // 'I have been overwritten'

function example () {
console.log('I have been overwritten');
}
functionWithArgs(7, 9): // 'I have been overwritten'

As you can see, no matter how I coded the previous function, since they are all called the same (example) the last one will overwrite the previous.

So my suggestion is to get back to the original status the page was at the beginning of the lesson, and write a single functionWithArgs function that output in console the sum of its arguments.