fifth()
Equal to self[4].
%w( a b c d e ).fifth # => "e"
# File activesupport/lib/active_support/core_ext/array/access.rb, line 76 def fifth self[4] end