Lists in [square brackets] hold values, nested collections, and quoted strings
All 9 scenarios hold
A blank cell captures null; unquoted elements are trimmed.
expected outcome
broken scenario
| Scenario | Input | Captured? |
|---|---|---|
| Null list | “” | |
| Empty list | [] | [] |
| Basic list | [a, b, c] |
|
| Nested list | [[a], [b], [c]] |
|
| Mixed content list | [[],a] |
|
| List with set | [{a,b}, c] |
|
| List with map | [[a:b], c] |
|
| List with quoted value | ["a,b", c] |
|
| Extra whitespace | [ a , a ] |
|