how to choose movieclip name dynamically
I hv 5 movieclips on stage mc1,mc2,mc3,mc4,mc5. I m trying this code to run random movieclip on stage
function Randvalue()
{
var randVal=Math.round(Math.random()*4)
this[mc+randVal].gotoAndPlay("over")
}
Randvalue()
showing error 1120: Access of undefined property mc.
what is the right way to choose movieclip dynamically in as3??