Adding Multiple Variables

Can you add multiple variables together to get a total?

total = score1 + score2 + score3;

This code only concatenates the scores, it doesn’t add them up.