I have a javscript object that I want to look like the following:
myObject = {the key:["value","value2","value3"]}
If I remove the space from the object such that it looks like this:
myObject = {thekey:["value","value2","value3"]}
there is no issue. How can I create an object with the above formatting?