Link Search Menu Expand Document

Assignment with a Returned Value

Summary

Final Code

// Setup
var processed = 0;

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

// Only change code below this line
processed = processArg(7);