Assuming we have an array myArray:
myArray
var value:* = myArray[int(Math.random() * myArray.length)];
Note we use int to cast the result of Math.random() to an int because values like 2.4539543 would not be a valid array index.
int
Math.random()
2.4539543