Expand a record ?

Hi,

Is it possible to expand a record ? Say I have two and want to join them together…

Copy only resets the value, but doesn’t retain the old value. Or are records non-mutable ?

Cheers!
S

Is this what you’re after?

set record1 to {dog:"Cat", apple:"banana"}
set record2 to {good:"evil", earth:"sky"}

set bothRecords to record1 & record2

Hi - Thanks! Yes, that was the answer to my question. Cheers. Turns out my solution was actually something else - but this helped me along, so thanks again.

S