Basic JavaScript - Passing Values to Functions with Arguments

can someone take a look at this challenge Basic JavaScript - Passing Values to Functions with Arguments

Your code so far

function functionWithArgs(1, 2) {
  console.log(1 + 2);
}
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/66.0.3359.181 Safari/537.36.

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

I’ve edited your post for readability. When you enter a code block into the forum, precede it with a line of three backticks and follow it with a line of three backticks to make easier to read. See this post to find the backtick on your keyboard. The “preformatted text” tool in the editor (</>) will also add backticks around text.

markdown_Forums

I suggest you to have a look at this post: Stack Overflow - Difference between arguments and parameters
Furthermore pay attention to the comments already inserted into the code:

// Only change code below this line.

means you should not modify or delete at all anything above that point ^^

Good luck! :slight_smile:

The goal it to put in any set of numbers and have the function operate the same. So the function and the console.log lines use variables (not numbers). The numbers only are entered into your final line, the function call.