Wouldn’t it be handy if coercion of a list to a string could be done with delimiters rather than by a separate text item operation? i.e.
set AppleScript's text item delimiters to ""
set myList to {"Now", "is", "the", "time"}
set wishString to myList as string with text delimiters space -- which won't work, of course
-- instead of
set tid to AppleScript's text item delimiters
set AppleScript's text item delimiters to space
set ListString to myList as string
set AppleScript's text item delimiters to tid -- which does