[ERROR]
There was no ] found after the [ of a delete operator.
delete [] MyArray; // ok
delete [3] MyArray; // error
Add a ] after the [.