#!/usr/bin/perl -w use strict; my @array = ('words', 'will', 'go', 'here'); my @array2 = ('words2', 'will2', 'go2', 'here2'); print "Content-Type: text/html\n\n"; print "$array[rand @array] - $array2[rand @array2]\n"; #### #!/usr/bin/perl -w use strict; my @array = ('words', 'will', 'go', 'here'); $array[rand @array] my @array2 = ('words2', 'will2', 'go2', 'here2'); $array2[rand @array2] print "Content-Type: text/html\n\n"; print <Title goes here

HTML can now go here

Then the random words go anywhere as $array and $array2...

$array

$array2

Footer text can go here!!! EOM exit; }