E2017 Syntax Errors
Syntax
stray comma; remove the extra ','
When this occurs
`{1, 2, 3,}`
Example error message
error[E2017]:
unexpected trailing comma in array literal
How to fix
Remove the trailing comma from your array literal: `{1, 2, 3}` not `{1, 2, 3,}`.