In article <39A15FAC.68C98B27@kasey.umkc.edu>, "David L. Nicol" <david@kasey.umkc.edu> wrote: > @post = (); > > for( 1 .. 100 + rand 200) { > > push @post, $words[rand @words]; > > }; > > $subject = join '', map {$words[rand @words]} (1..5); Why map for the second but not the first? @post = map $words[rand @words], 1..100+rand 200; ==== Want to unsubscribe from Fun With Perl? Well, if you insist... ==== Send email to <fwp-request@technofile.org> with message _body_ ==== unsubscribe