class Array

def fifth

def fifth
  self[4]
end

def fourth

def fourth
  self[3]
end

def present?

def present?
  !empty?
end

def second

def second
  self[1]
end

def third

def third
  self[2]
end