Array Ruby

a = [1,2,3]
a.combination(2) {|x| print x }  # Prints "[1, 2][1, 3][2, 3]"