I am doing some ruby exercises and it said I need to go back and rewrite the script with += shorthand notations.
+=
This exercise deals primarily with lear
+= is a shorthand operator.
someVar += otherVar
is the same as
someVar = someVar + otherVar