In Ruby is there a way to combine all array elements into one string?
Example Array:
@arr = [\'Hello World\', \'This is a
Hello World
This is a
While a bit more cryptic than join, you can also multiply the array by a string.
join
@arr * " "