class Array

def second

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

Equal to self[1].
def second
  self[1]
end