Array#mirror

Creates an Hash from an array where the values of the Array are values and keys of the Hash Call the method #mirror on an Array to see how it works

   array = ['one', 'two']
   arra.mirror # => { 'one' => 'one', 'two' => 'two' }