Заполни массив fruits пятью любыми элементами и экспортируй его из файла helper.js

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

helper.js

const fruits = [];

solution.js

/**
 * Fill in the array fruits with 5 elements and export it from the file helper.js
 * */

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

console.log(fruits);
console.log(fruits.length); // 5