@fruit = (); @meat = (); @dairy = (); open (FOOD, "./food.txt"); while() { chomp; ($category,$item) = split(/\s+/,$_); push(@{"$category"},$item); }