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.
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';
you only need to fill name, surname and address. then export it to solution.js