Заполни массив strings пятью разными строками и экспортируй его из файла helper.js
Эта задача — часть курса по Full-Stack JavaScript
Ты можешь задать свой вопрос в комментариях под постом
Если ты уже решил задачу, то не стесняйся помочь другим
helper.js
const strings = [];
solution.js
/**
* Fill in the array **strings** with 5 strings export it from the file *helper.js*
* */
import { strings } from './helper.js';
console.log(strings);
console.log(strings.length); // 5