Add two numbers

Hi again friend, sorry to bother you, stuck on step 55: are you able to shed some light?

function addTwoNumbers(parameter1, parameter2) {

return (parameter1, parameter2);

}

const call = addTwoNumbers(“5” + “10”);

const sum = 5 +10;

console.log(sum)

We don’t like to clutter threads with multiple topics, so I moved the question to its own topic.

You need to return the sum of the two numbers. Right now you are not passing in numbers or summing them. (You are passing in strings)

1 Like

Alright, thank you for the help. Let me try it again.