What value is obtained when accessing myObject['another key'] after executing the following code?
const myObject = {};
myObject['another key'] = 'new value';
What value is obtained when accessing myObject['another key'] after executing the following code?
const myObject = {};
myObject['another key'] = 'new value';