In the store, all products are stored in a Map<String, Int>, which holds name - price pairs.
The customer comes with a shopping list and wants to know what the total price of products on the list will be. Keep in mind that some products may not be available in the store.
You are given Map<String, Int> (product name and price) and MutableList of String (shopping list) as the function parameters. Return the total price of the items the customer needs to buy.