I have information that appears as follows:
[{"letter": "a", "word" : "apple"}, {"letter": "b", "word":"ball"}, {"letter": "a", "word":"alpha"}, {"letter": "c", "word":"cat"}]
My goal is to convert it into:
{"a":["apple", "alpha"], "b": ["ball"], "c":["cat"]}