in reply to How do I pick a random line from a file?
open FILE, "<$file" or die "Could not open $file: $!\n"; @array=<FILE>; close FILE; $randomline=$array[rand @array]; [download]