##
$VAR1 = {
'3' => [
'apple',
'grape'
],
'2' => [
'pear',
'icky pineapple'
],
'5' => [
'orange'
]
};
####
my %hash = (
'3' => [ 'apple', 'grape' ],
'2' => [ 'pear', 'icky pineapple' ],
'5' => [ 'orange' ]
);