Ruby - Hashes
Identify the error in the following Ruby method using hash named parameters:
def display(options = {})
puts "Title: #{options[:title]}"
puts "Author: #{options[:author]}"
end
display(title: "Ruby Guide")