Just to close the loop for anyone else looking at this issue. I was able to get it working by creating a new array and using two different spread operators.
let arr = []
for (let w of list_of_unique_feeling_words_in_this_transcript){
let ...
I’m having a similar issue.
the list is > 10 items, and yet the loop completes with “updateRecordAsync” writing only a single element, the last element in the list.
for (let thisWord of list_of_unique_feeling_words_in_this_transcript) {
let feeli...