while() { @Array1 = ; } #### my @arr; while ( <$fh> ) { chomp; push @arr, $_; } #### my @arr = <$fh>; chomp @arr; #### chomp( my @arr = <$fh> );