I am having a problem with 10/13. can anyone help?
import java.util.HashMap;
public class Restaurant {
public static void main(String args) {
HashMap<String, Integer> restaurantMenu = new HashMap<String, Integer>();
restaurantMenue.put("Turkey Burger", 13);
}
}
There is a typo here:
restaurantMenue.put("Turkey Burger", 13);
It should be Menu
, not Menue
.
1 Like
that was the problem thx!!
1 Like
system
closed
#5
This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.