Ruby - Hashes
Given this method:
```ruby
def config(options = {})
defaults = {host: 'localhost', port: 80}
settings = defaults.merge(options)
"Host: #{settings[:host]}, Port: #{settings[:port]}"
end
```
What will be the output of `config(port: 3000)`?
