Ruby - Methods
What will be the output of this Ruby code?
def greet_all(*names)
names.map { |name| "Hello, #{name}!" }
end
p greet_all('Alice', 'Bob')