Question: Complete the following code to iterate through the keys and values of the fantastic_beasts hash. 1 fantastic_beasts = { 2 octopuses => tentacles, 3 dolphins
Complete the following code to iterate through the keys and values of the fantastic_beasts hash.
1 fantastic_beasts = { 2 "octopuses" => "tentacles", 3 "dolphins" => "fins", 4 "rhinos" => "horns" 5 }
6 # Replace ??? below with appropriate values
7 fantastic_beasts.??? do |???, ???| 8 puts "#{animal} have #{attribute}" 9 end
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
