title|first|last|room|phone|email Mrs|Linda|Caralo|201|148|she@borg.org Miss|Jean|Androno|317|167|j@alo.com Mr|Steve|Paterman|101|100|steve@net.net #### my %caralo_l ( “title” => “Mrs”, “first” => “Linda”, “last” => “Caralo”, “room” => “201”, “phone” => “148”, “email” => “she@borg.org”, ); my %androno_j ( “title” => “Miss”, “first” => “Jean”, “last” => “Andronlo”, “room” => “317”, “phone” => “167”, “email” => “j@alo.com”, ); my %paterman_s ( “title” => “Mr”, “first” => “Steve”, “last” => “Paterman”, “room” => “101”, “phone” => “100”, “email” => “stv@net.net”, ); my @alldata (%caralo_l, %androno_j, %paterman_s);