You need to change the last three lines to use the += operator instead of the + operator. Don’t change the numbers in those lines.
Look at the example in the instructions:
myVar += 5;
This is the same thing as:
myVar = myVar + 5;
So you need to convert the last three lines in the challenge from the longer form which uses just the + operator to the shorter form that uses the += operator.