Given a groceryList object, add one to each value in the list.
// input: const groceryList = { apples: 3, bananas: 4, chocolate: 10 }; // output: { apples: 4, bananas: 5, chocolate: 11 }
/* output */