Tell us what’s happening:
This is what the exercise wants: You should assign processArg
to processed
I don’t know where the error is? can someone help me please?
Thanks in advance
Your code so far
// Example
var changed = 0;
function change(num) {
return (num + 5) / 3;
}
changed = change(10);
// Setup
var processed = 0;
function processArg(num) {
return (num + 3) / 5;
}
// Only change code below this line
processed = processArg (7);