Addressing movie clips via Array...?

Yet another AS3 newbie question…

My Flash file provides a small number (say, 4) of user-selected “displays”. Within each display, there are up to four “link” movie clips, each of which are (or should be) selectable.

The displays have instance names of display0_mc, display1_mc, display2_mc, and display3_mc. I can address each display through an array…

var display:Array = [ display0_mc, display1_mc, display2_mc, display3_mc ];

…as display[ 0 ], display[ 1 ], etc.

Now, the four links within each display are named link0_mc through link3_mc. (Each of these is actually a movie clip containing a dynamic text field, link_txt, and a few other elements not relevant here.)

Is there a means, within AS3, by which I may address each of these link movie clips within each display through an array, similar to how I’m addressing each display?

Such as… display[ i ].link[ j ] …? I’ve been unsuccessful at defining such an array for the link movie clips within the display.

Thank you in advance!