ts wrote: > >>>>> "J" == James T Vradelis <jvradelis / mediaone.net> writes: > > J> myArray = [1,2,3,4,5] > J> myArray[4,2,3] -> [5,3,4] > J> I realize that this latter conflicts with: > J> Array#[<beginning index>, <number of elements>] > J> but that functionality is duplicated by: > J> Array#[<beginning index>..<beginning index + number of elements - 1>] > J> anyway. > > I've not understood, with your example what is the result of > > myArray[4, 2] > > Guy Decoux In the example given, the result of myArray[4,2] would be [5, 3].