in reply to explicit package name
A small remark:
@allanswers = (@allanswers, $value); # can be replaced by push @allanswers, $value; [download]
This is much more efficient, shorter to write and better to read :) (see push)
-- Hofmator