in reply to Chomp an AoA?

To chomp all elements you could
chomp @$_ for @array; # or chomp map @$_, @array;
However since you only want to chomp one of them
chomp map $_->[2], @array;
But why add another loop if you can do it inline?
while (<FILE>) { next if /^#/ or tr/\t// != 6; chomp; push @array, [ split "\t" ]; }

Makeshifts last the longest.