I need some help with this please!

Tell us what’s happening:
How can I pass this? I tried literally everything.
I followed the video as well.

Your code so far


// Setup
var processed = 0;

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

// Only change code below this line
var processed = processedArg(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:

your function its processArg
but in variable you stored it as processedArg
remove the ‘ed’ that should fix it

1 Like

Thank you it worked!