fruit = { :apple => 'fruit', :orange => 'fruit', :squash => 'vegetable' } puts fruit[:apple] fruit[:corn] = 'vegetable' puts fruit[:corn]