Crea un campo de texto y llamalo
texto_txt, crea un boton y llamalo
boton y en un frame vacio escribes :
Cita: var palabras:Array = Array("auto", "casa", "ropero", "ventana");
boton.onPress = function() {
texto_txt.text=palabras[Math.floor(Math.random()*(palabras.length-1))];
};