print "** Random 4 Lotto Numbers **\n"; print "** Type any four digits (0 to 9) **\n"; for ($i=1; $i <= 4; $i++) { print "Choice $i: "; chomp ($digit[$i] = ); redo if $digit[$i] !~ /^\d$/; } print "Your choices :@digit \n";