questionArray = [“What is 5 multiplied by 5?”];
answerArray = [“25”];
Question = (questionArray [0]);
Answer = (answerArray [0]);
array = [dtext1];
array [0] = Answer;
trace (dtext1); //This output as _level0.dtext1 WHY? I expected it to be 25!