Feeding Array into Function

I’m forgetting the correct syntax here. I’ve got a function that I want to feed an array of movie clip names into, like so:


var clipArray:Array = new Array();
function revealDetails(clipArray):Void {
  trace(clipArray);
}
revealDetails(skills_mc,experience_mc,personality_mc);