class Array

def fifth

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

Equal to self[4].
def fifth
  self[4]
end