hi all

i want to make a 4 daynamic texts and 4 words in 4 variables like this

word1 = "lion";
word2 = "tiger";
word3 = "cat";
word4 = "bird";

i need acode to make these words randomly injected to the four dynamic texts boxes with out repeated any word, how can i do that?

i can only random one txt box only i cant do 4 :-

words = new Array ("lion","tiger","cat","bird");
randnum = random(3);
_root.box = words[randnum];

i need more 3 txt box , but the problem is the code will repeat the words with same names. any help please