just want certail elements

I just want to be able to take every 6 value out of an arrays
can someone tell me what i'm doing wrong? the data looks like

1500680,Treverbyn,397,1,2136,4420 and i want the 2 element treverbyn out of every row

#hour0.pl
my $url = 'The classic browser game Tribal Wars - play for free and online!';
use LWP::Simple;
my $content = get $url;
@array=split(/,/, $content);
$n=1;
print " @array[1,7..56]\n";
$n++;

Even though you are getting the entire file in a variable, the best is to treat it as if an ordinary file and read the file line-by-line and then split the fields as usual.

#!/usr/bin/perl -w

my $url = 'http://en19.tribalwars.net/map/tribe.txt';
use LWP::Simple;
my $content = get $url;
my @uid;
open(DAT, "<", \$content) or die $!;
while ($line = <DAT>) {
	push(@uid, [split(/,/, $line)]->[1]);
}
close DAT;

use Data::Dumper;
print Dumper(\@uid);