Assignment with a Returned Value: whats wrong here?

Tell us what’s happening:
I cant figure out whats wrong here.
any help is appreciated thanks.

Your code so far


// Setup
var processed = 0;

function processArg(num) {
return (num + 3) / 5;
}

// Only change code below this line
processed = 2;

function processArg(num) {
return (num + 5);
}

processed = processArg(7);

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.116 Safari/537.36.

Challenge: Assignment with a Returned Value

Link to the challenge:

you have changed what the processArg function does

you do not need to write again the processArg solution as there is already one defined

your new function returns the argument plus 5, so processed has value of 12