I have a sample JSON document that has data similar to this:
{"lake-piers": {"Ozark Mountain": [" fish bass", " fish catfish", " fish bluegill", " fish sunfish"],"Small Mountain": [" fish catfish", " fish bluegill", " fish sunfish"]}}
What I am looking to do is extract the keys (Ozark Mountain and Small Mountain) and the associated lists with each of them. What is throwing me a bit is the lake-piers. For two reasons. 1) the "-" which I believe i can just do a text.replace with. The second is to keep it from being the only key with JSON.parse.