Ruby - String Operations
What is the output of this Ruby code?
sentence = "apple,banana,cherry"
fruits = sentence.split(",")
result = fruits.join(" & ")
puts result