HELP! Displaying Text Randomly Every Time I Click using ActionScript 3.
Hello! I'm doing a school project using Adobe Flash ActionScript 3.
Here is an image of what I am working on:

I have a text box layer on top of the talk bubble. At first it is blank, then I click on Hello Kitty and a random phrase pops up in the text box from the array I created. However, when I click her again she will not say another random phrase. I don't know what I'm doing wrong. Here is the code. Please, take a look at it and let me know what I can do to fix it! Thanks! ![]()
var myPhrases:Array = new Array(); // HELLO KITTY PHRASES FOR TALK BUBBLE
myPhrases[0]="My name is Hello Kitty!";
myPhrases[1]="How are you today?";
myPhrases[2]="Smile! It's a beautiful day!";
myPhrases[3]="I want to be your friend!";
myPhrases[4]="You have a great smile!";
myPhrases[5]="I like flowers & rainbows.";
myPhrases[6]="What is your name?";
myPhrases[7]="Let's find Dora and go on an adventure!";
myPhrases[8]="Mmmmeeeeoooowww!";
var i:int=Math.floor(myPhrases.length*Math.random()); // RANDOM PHRASE
var value=myPhrases;
HKITTY_mc.addEventListener(MouseEvent.CLICK, onClick); // CHANGE PHRASE WHEN YOU CLICK ON HELLO KITTY (THIS IS NOT WORKING!!!!)
function onClick(event:MouseEvent):void {
stop();
ILOVEMYTEXTBOX.text=value;
}