0 / 60 seg.

What is displayed when this code is compiled and executed?

import java.util.HashMap;
public class Main {
    public static void main(String[] args) {
        HashMap<String, Integer> pantry = new HashMap<>();
        pantry.put("Apples", 3);
        pantry.put("Oranges", 2);
        int currentApples = pantry.get("Apples");
        pantry.put("Apples", currentApples + 4);
        System.out.println(pantry.get("Apples"));
    }
}