Expressions
Expressions are groups of objects that can be combined into a single object. They typically involve literals, identifiers, and operators.
1 + 1,
1 +1
1+1
all equal 2. [1 + 1] => [2]
Expressions are a basic type of statement. Most statements contain a combination of keywords and expressions.