Finding it a struggle!

Tell us what’s happening:

Your code so far


// Setup
var processed = 0;

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

changed = change(10);

// Only change code below this line

var processed = 2;

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

processed = processArg(7);

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36.

Challenge: Assignment with a Returned Value

Link to the challenge:

its not giving it to me for some reason!

Why do you define the function twice? That’s what is throwing you off.

The instructions:
Call the processArg function with an argument of 7 and assign its return value to the variable processed.

Do you understand what the challenge is asking?

You’ve got the answer, it’s your last line of code. Leave everything else out and try submitting.