I need to create an empty map in java 8, then put some keys and values in it all at once. Is this possible? I have included code of what I want to do.
Map<String, String> data = new HashMap<String, String>();
data.put("candy" "chocolate", "shoes", "sneakers", "car", "prius");