Many new developers are not familiar with the concept of dynamic keys: ```js var a = "key"; var data = {}; data[a] = true; console.log(data.key); // true ``` It would make sense to provide the option of: ``` { latlng: [1,2,], key: 'something' } ``` As an option