Adding numbers

How do I add numbers in Actionscript 3?
I have two dynamic texts[COLOR=Blue] totalscore.text = “3”;[/COLOR] and [COLOR=Blue]myscore.text = “2”;[/COLOR]
I’m trying to add them like this [COLOR=Blue]totalscore.text += myscore.text; [/COLOR]And i get this answer [COLOR=Blue]32[/COLOR] instead of [COLOR=Blue]5[/COLOR] it just attaches them instead of adding. why?
I also tried it like this [COLOR=Blue]
var my_score:Number = myscore.text;
totalscore.text += my_score;[/COLOR]
but it still attaches them numbers together instead of adding.