Random items from array

I want to display multiple random objects of an array. My terrain array and terrain length have been declared elseware. How do i make that code produce more than one item from that array

function genTRN () {
_ter=random(_root.ter_len)
trn_txt.text=_root.terrain[_ter]

}