var form = FormApp.openById("1WH-fiyqC8yRaSe2rSBaXOBW4ozW01XTlybmQqnpOyEY");
function pegaIDs(){
var perguntas = form.getItems();
perguntas.map(function(i){
//Logger.log(i.getId().toString() + " - " + i.getTitle()); // 777075733
});
}
function listaAtualizada(){
var aba = SpreadsheetApp.getActiveSpreadsheet().getSheetByName("Página1");
var pergID = form.getItemById("777075733");
var respostas = aba.getRange(2, 3, 40, 1).getValues().map(function(u) {return u[0] }).filter(function(u) {return u != ""});
pergID.asMultipleChoiceItem().setChoiceValues(respostas);
}