Why won't append row work with array?
问题 I am trying to insert a row to the bottom of a sheet, but instead of my values I see text similar to what happens when you try to print an array in Java. I checked to see if the array is made correctly with logger and it has the values I want. var name = e.range.getRow() + SpreadsheetApp.getActiveSpreadsheet().getName(); var array = e.range.getValues().concat(name); Logger.log(array.toString()); masterSheet.appendRow(array); array contains a timestamp, string1, string2, and finally the name I