class Array

def pop_sample


Pop a random element from the array.
def pop_sample
  delete_at(rand(length))
end