Which of the following options shows a correctly defined JavaScript array?
Group of answer choices
var list = [ "123", "456", "789" ] ;
var list [] = [ "123", "456", "789" ] ;
list = [ "123", "456", "789" ] ;
var list = {"123", "456", "789" } ;