+= operator, -= subtracts a number from a variable.
myVar = myVar - 5;
will subtract 5 from myVar. This can be rewritten as:
myVar -= 5;
a, b, and c to use the -= operator.
a should equal 5.
    testString: assert(a === 5);
  - text: b should equal -6.
    testString: assert(b === -6);
  - text: c should equal 2.
    testString: assert(c === 2);
  - text: You should use the -= operator for each variable.
    testString: assert(code.match(/-=/g).length === 3);
  - text: You should not modify the code above the specified comment.
    testString: assert(/var a = 11;/.test(code) && /var b = 9;/.test(code) && /var c = 3;/.test(code));
```