Ajouter à Array Applecript

set theList to {"cyan", "magenta", "yellow"}
set newColor to "black"
set end of theList to newColor
theList
-- {"cyan", "magenta", "yellow", "black"}
Confused Sphere