1BEGIN 2{ 3 @map[3 + 1] = 9999; 4 print(@map); 5} 6 7END 8{ 9 printf("=> Print after delete:\n"); 10 delete(@map[4]); 11 print(@map); 12} 13