From: gwtmp01@... Date: 2006-03-31T06:22:28+09:00 Subject: Re: On Mar 30, 2006, at 4:11 PM, Meino Christian Cramer wrote: > If I want not only "a".."z" but also "A".."Z" I thought (from the > logical point of view...) that > >>> a=("A".."z").sort_by { rand } a = (('a'..'z').to_a + ('A'..'Z').to_a).sort_by { rand } Gary Wright