Ruby - Hashes
What will be the output of the following Ruby code?
def info(options = {})
"Name: #{options[:name]}, Age: #{options[:age]}"
end
puts info(name: "Alice", age: 30)