Currently, you must wrap key values in quotes to assign: ```typescript player = { 'x': 0, 'y': 0, 'health': 100, } ``` Instead I'd like to be able to define key values without, as long as there is no space in the key: ```typescript player = { x: 0, y: 0, health: 100, } ```