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

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

helper.js

const numbers = [];

solution.js

/**
 * Fill in the array **numbers** with 10 different numbers and export it from the file *helper.js*
 * */

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

console.log(numbers);
console.log(numbers.length); // 10