does anyone know how to add all of one list into another list (as in, list 1 has thing 1, thing 2, and thing 3, list 2 has thing 4, thing 5, and thing 6, and I want list 1 to have thing 1, thing 2, thing 3, thing 4, thing 5, and thing 6)?
so what you do is: repeat until <(length of [list 2]) = 0> :{ add (item 1 of [list 2]) to [list 1] delete 1 of [list 2] }