Unterminated string (" expected)

Strings must be delimited by double quote " characters. You probably forgot the terminating " character, or you accidentally entered a " character without the intention of specifying a string value.

Example:

caption = "Mandelbrot

should become

caption = "Mandelbrot"

See Also
Errors