module Enumerable def each_randomly (sort_by { rand }).each { |e| yield e } endend%w{A b c }.each_randomly { |x| puts x }