Ruby - Hashes
Given the code:
What will be the output?
data = {user: {profile: {name: "Alice", age: 30}}}
puts data.dig(:user, :profile, :name)What will be the output?
