Инициализируй массив objectives тремя строками ‘Full’, ‘Stack’, ‘Javascript’ в файле helper.js
Эта задача — часть курса по Full-Stack JavaScript
Ты можешь задать свой вопрос в комментариях под постом
Если ты уже решил задачу, то не стесняйся помочь другим
helper.js
export const objectives = [];
solution.js
/**
* Initialize the array objectives with 3 strings 'Full', 'Stack', 'Javascript' in file helper.js
*
* {"jsLectureId": 11, "reward": 1}
* */
import { objectives } from './helper.js';
console.log(objectives);