I want to name a few variables using names contained inside other variables but this strict data typing thing is new for me…
sIdentifier = "myArray"
var this[sIdentifier]:Array = new Array()
The thing is that I want my Array to be named “myArray”
but I get a “Identifier Expected” error
Can you help me ?