Ruby - Methods
Given this method:
def build_profile(name:, age:, city: "Unknown", **extras)
profile = {name: name, age: age, city: city}
profile.merge!(extras)
profile
end
What will be the result of build_profile(name: "Bob", age: 25, hobby: "guitar", pet: "dog")?