This may be a little long winded. But here it goes.
let processed = 2
function processArg(num) {
return (num + 3) / 5;
}
//only change code below this line
processed = processArg(7)
my thoughts and questions -
that is the correct answer. But I don’t know why. Where did the 7 come from? and then before that, the variable “processed” is assigned the value of 2.
and when I tell the function to return 3 divided by 5 , well that just seems weird to me. None of it makes sense.