Which of these statements increase the value of tracker by 1?

++tracker;tracker += 1;tracker = tracker + 1;tracker + 1;

Fantastic! We can use the ++, += and + operators. If we use the assignment operator, we need to assign the result back to tracker.

So close! We can use the ++, += and + operators. If we use the assignment operator, we need to assign the result back to tracker.