//attempt1
function addTwoAndSeven(‘2+7’) {
return (addTwoAndSeven);
}
/attempt 2
function addTwoAndSeven(2,7) {
return (2=7);
//attempt3
function addTwoAndSeven(2,7) {
return 2 + 7;
//attempt4
function addTwoAndSeven() {
addTwoAndSeven(2+7);
return addTwoAndSeven;
}
these are my last tries..
thanks, After rewatching functions (3 times) I at least understand it a little more but Im still completely lost on how to pass the task
Hi,
Great progress! Your were very close on the third attempt. You’re returning the sum of 2 and 7 but you’re doing something extra as well. Take a look at attempt3 and see if you’ve added anything extra.
Good luck!