var score = 10 score = 15 // fine, var can change let maxAttempts = 3 // maxAttempts = 5 // error: cannot assign to a 'let' constant
Click Run to execute this code.