You would `concat` two Arrays, so I'd expect that ...
# suitescript
e
You would
concat
two Arrays, so I'd expect that to be
ssg.columns.concat([newCol]);
, or you can use
push
to add an element at the end
ssg.columns.push(newCol);