Take a look at solution.js. It imports an object user from the file helper.js and logs it to the screen.

Add properties name, surname and address to the user object in the file helper.js.

This task is part of the Full-Stack JavaScript Course
If you have any issues with it, you can ask for community help below the post
Feel free to help others if you’ve already solved the task

helper.js

export const user = {
  age: '100',
};

solution.js

/**
 * solution.js imports an object user from the file helper.js and logs it to the screen
 *
 * Add properties name, surname and address to the 'user' object in the file helper.js.
 * */

import { user } from './helper.js';

console.log(user);