in reply to Another array thing - split two fields into one

You just need to join them before pushing:

while ( <IN> ) { push @array, join '', (split /\s+/)[9, 0]; }
I modified that to use the pronoun $_.

After Compline,
Zaxo