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