Random play();

I have 5 movies on the stage and put into an array. I now want to play these movies one at a time randomly. Anyone know the code for this?

arrayMov = new Array();
arrayMov[0] = _root.mov1;
arrayMov[1] = _root.mov2;
arrayMov[2] = _root.mov3;
arrayMov[3] = _root.mov4;
arrayMov[4] = _root.mov5;

trace(arrayMov);
:+)