Assignment with a Returned Value "not responding"

Tell us what’s happening:
my problem is the second description of the test which says “you should assign processArg to processed” which i have done, but i get no response when i run test. Are my missing something?

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)

Your browser information:

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

Link to the challenge:
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/assignment-with-a-returned-value/

You forgot the semi colon at the end. FCC is picky :slight_smile:

thanks alot! it worked. i can’t believe i missed that.