class Array

def third

%w( a b c d e ).third # => "c"

Equal to self[2].
def third
  self[2]
end