well...let's say ..I have the 100 levels in the game and want to know the Score for each level...
I think it's better to have one Array object than 100 Variables...(Level1_Score; Level2_Score;..Level77_Score..)
...but I could be wrong..
Well in this situation a array would be best. I under the impression OP wanted to carry level 1 score to level 2 to level 3 etc.
But, if he wants to store a score for each level then array would be best.
Store level / score
Array Push back "Score" on X axis
Array Set value at (array.width-1, 1) to level
Array set value at (array.width-1, 2) to score
Fetch Level / score
Array for each x element
System compare array.at(array.curx) = "Score"
System compare array.at(array.curx,1) = level
Add action to return score so set text array.at(array.curx,2)