in reply to Odd number of elements in hash assignment

After some thought, I added the following declarations:
my $refQuestions = \%Questions; my $refSorter = \@Sorter;
and changed the call to the function as follows:
($refQuestions,$refSorter) = Load(\%Questions,\@Sorter,$max,$data);
And all was well..

TStanley
In the end, there can be only one!