# Ruby uses arrays to return multiple values.# To return multiple values, all you have to do is to separate them with a comma: return a, b, cdef greeting() return "No", "worries"endarray = greetingputs array.join(" ")