here is my solution which is printed out correctly on the terminal. but submitting it I failed. please where have i gone wrong.
import { user } from './helper.js';
user.name = "John";
user.surname = "willson";
user.address = {}
user.address.street = "number one street";
user.address.state = "Greater Accra";
user.address.country = "Ghana"

console.log(user);

    dessyprah suggestion from @Ochosteve makes sense. If you still have trouble with this task make sure to post the task description and the submission results as well as your code.

    2 months later

    dessyprah

    maybe it will inspire you

    helper.js
    export const user = {
    name: "Annette",
    surname: "fei",
    address: {
    town: "goma",
    quarter: "Mabanga_sud",
    },
    };
    solution.js
    import { user } from './helper.js';

    console.log(user);

    Write a Reply...