in reply to Copying a hash element into an array as a list

What you've got is not a list in the Perl sense, but a string. You need to use split to turn it into a list, so you can assign it to an array sensibly:
my @Array = split ' ', $Hash{'Element'};

The PerlMonk tr/// Advocate