If you wanted to create a line of code that would add 10 to the user's current score which code should you use?

1. Score === Score + 10
2. Score = Score + Score
3. Score = Score + 10
4. If Score, then +10

The correct code to add 10 to the user's current score is option 3: Score = Score + 10.