Here is a sample of what doesn't work:
var array_one = [];
array_one=['a','b','c'];
Declaring and populating the array outside any function doesn't work, but
var array_one = [];
function do_something(){
array_one=['a','b','c'];
}
does, because it's inside a function. Why?
array_one = ['a','b','c'];you're just missing an=. Or are you trying to refer separately to['a'],['b'], and['c'], changing them tonullperhaps?