i keep getting errors when i submit task
Solution.js
`/**
* Make twoDime a 2 dimensional array in the file helper.js
*
* {"jsLectureId": 11, "reward": 1}
* */
import { twoDime } from './helper.js';
console.log(twoDime);
Helper.js
export const firstRow = [ 1, 2, 3 ];
export const secondRow = [ 4, 5, 6 ];
export const thirdRow = [ 7, 8, 9 ];
export const twoDime = [firstRow][secondRow];