``` //Export.js export default { key: "value" } //Import.js import {key} from "./Export.js" console.log(key) // undefined, but should "value" ``` What's wrong?