state_lookup = us_states.index_by {|state| state.short_name}
what exactly is |state| supposed to repressent? why do we need to to call the object again? doesn’t rails understand that state.short_name will come from state? I thought rails was trying to eliminate redundancy.