#!C:/perl/bin/perl.exe use CGI; $query = new CGI; @varlist= ("01", "02", "03", "04", "05"); srand; @new = (); while (@varlist){ push(@new, splice(@varlist, rand @varlist,1)); } @varlist= @new; print $query->header; print $query->start_html(-title=>'Self-Esteem Test'); print ""; print "
"; print $query->hidden('varlist',@varlist); print "Welcome to the self-etseem survey. Please click the button to begin.

"; print " "; print ""; print "
"; print $query->end_html;