in reply to Re^2: need help to print some linesin thread need help to print some lines
Instead of repeating push function, why not:
... while (<DATA>) { for my $index ( 0 .. 1 ) { push @{ $array_organizer->[$index] }, [split]->[$index]; } } ... [download]