<code>getMousePosition</code> is a simple function that returns an object containing two fields.
ES6 provides the syntactic sugar to eliminate the redundancy of having to write <code>x: x</code>. You can simply write <code>x</code> once, and it will be converted to<code>x: x</code> (or something equivalent) under the hood.
Here is the same function from above rewritten to use this new syntax:
<blockquote>const getMousePosition = (x, y) => ({ x, y });</blockquote>
</section>
## Instructions
<sectionid='instructions'>
Use simple fields with object literals to create and return a <code>Person</code> object.
</section>
## Tests
<sectionid='tests'>
```yml
- text: 'the output is <code>{name: "Zodiac Hasbro", age: 56, gender: "male"}</code>.'