### list

In AppleScript, an ordered collection of values enclosed by braces. The values in a list are separated by commas. List is an AppleScript value class.

For example:

```
{ 1, 2, 3, 4 }
{ "red" , "green" , "blue" }
</code></pre>
