Ruby on Rails
PhpArray_rand


def pickrandom(array, num_elements)
  array.sort { rand(3)-1 }[0..(num_elements-1)]
end