Загляни в файл solution.js. Он импортирует объект user из файла helper.js и выводит его на экран.

Добавь поля name, surname и address к объекту user в файле helper.js.

Эта задача — часть курса по Full-Stack JavaScript
Ты можешь задать свой вопрос в комментариях под постом
Если ты уже решил задачу, то не стесняйся помочь другим

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);