@Rose_Haft1 - this is a link field, yes? If so, the best way is to use the spread operator. From the docs:
When updating an existing linked record cell value, the specified array will overwrite the current cell value. If you want to add a new linked record without deleting the current linked records, you can spread the current cell value like so:
let newForeignRecordIdToLink = 'recXXXXXXXXXXXXXX';
myTable.updateRecordAsync(myRecord, {
'myLinkedRecordField': [
...myRecord.getCellValue('myLinkedRecordField'),
{ id: newForeignRecordIdToLink }
]
})
From MDN:
I’ve got an example of this here (albeit on an attachment field, not a link field, but it is the same idea)