In this section of code I need to read from file.txt randomly:
...
open my $fh, '<', 'file.txt' or die $!;
while ( <$fh> ) {
next unless /\S/;
chomp;
my $response = $ua->get( "http://$_.domain.tld/" );
...
How to read lines from file.txt randomly?