Unclosed Array JSON Error

An array starts but never gets its closing bracket.

Error

An array starts but never gets its closing bracket.

[1, 2

Cause

The array is missing its final ] character.

How to fix

Add the missing ] at the end of the array.

[1, 2]