Hi: I am looking for an array function that will prepend the way concat appends. That is, concating an array places each element in the array, adding n elements, not 1 element of type array. a=[3,4];b=[1,2] a.unshift b # = > [[1,2],3,4] I want [1,2,3,4] and would prefer not to have to use flatten or collect and <<. Thanks ========================================================= Jim Freeze jim / freeze.org --------------------------------------------------------- Today is a fine day for Ruby programming. http://www.freeze.org =========================================================