@rmaylie9560 yea js has its annoyances, like if you you want to add an item to an array you don't need to assign it, but it you concat two lists you do, get me everytime
var myArray = [1, 2, 3];
var item;
item = 4;
myArray.push(item); //works
item = [5, 6, 7];
myArray.concat(item): //doesn't work
myArray = myArray.concat(item); // have to do this instead
I have wasted many hours at work over this
sudo apt-get upgrade
# followed by
sudo apt-get update