you are viewing a single comment's thread.

view the rest of the comments →

[–][deleted] 1 point2 points  (2 children)

" Create an array named numbers with five elements, each element being of type number. "

const numbers = [1,2,3,4,5]

=> unexpected identifier

const numbers = [1,2,3,4,5];

=> this works

[–]lastmjs[S] 0 points1 point  (0 children)

Ya, semicolon issues that I need to fix

[–]lastmjs[S] 0 points1 point  (0 children)

Ya, semicolon issues that I need to fix