You are accepting those parameters and storing them in the variables called one and two. You could have called them anything, but this is what was chosen.
Then when you output, you have hard-coded the numbers 1 and 2.
console.log(1+2);
But instead you need to use the variable names that you used to accept the parameters on the line before.