String Ruby

s = ""
data.each_with_index { |x, i| s << x; s << "|" if i < data.length-1 }
puts s