From: Kyung won Cheon Date: 2009-01-09T11:49:37+09:00 Subject: about Array methods l = [1,2,3,4,5] head = l[0..2] p head # => [1,2,3] p l # => [1,2,3,4,5] # I want '[4,5]' # Is that method in Array? -- Posted via http://www.ruby-forum.com/.