From: Roger Pack Date: 2008-07-15T14:13:16+09:00 Subject: array ending syntax question irb(main):001:0> [1,2][2..2] => [] irb(main):002:0> [1,2][3..3] => nil Is this expected? the ri says: Returns nil if the index (or starting index) are out of range. does the first example match this? Thanks! -R -- Posted via http://www.ruby-forum.com/.