Compiling Error Auth Token Not Declared In this Scope

First time messing with Blynk and also pretty clueless on code. Trying to just turn the on board LED on and off on my Nano 33 IoT. Figure from there I can learn how to get a bit more complicated.

Using example code in the Arduino software and getting this error.

Arduino: 1.8.13 (Windows 10), Board: “Arduino MKR WiFi 1010”

Arduino_MKR1010:38:14: error: ‘qRtWUKwQL5zIiiyIzLCGP2O0syyBvOap’ was not declared in this scope

char auth[] =qRtWUKwQL5zIiiyIzLCGP2O0syyBvOap;

          ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Arduino_MKR1010:42:14: error: ‘Dont’ was not declared in this scope

char ssid[] =Dont Blink 182;

          ^~~~

C:\Users\EVANST~1\AppData\Local\Temp\arduino_modified_sketch_690722\Arduino_MKR1010.ino:42:14: note: suggested alternative: ‘uint’

char ssid[] =Dont Blink 182;

          ^~~~

          uint

Arduino_MKR1010:43:14: error: ‘Starkey1’ was not declared in this scope

char pass[] =Starkey1;

          ^~~~~~~~

C:\Users\EVANST~1\AppData\Local\Temp\arduino_modified_sketch_690722\Arduino_MKR1010.ino:43:14: note: suggested alternative: ‘Stream’

char pass[] =Starkey1;

          ^~~~~~~~

          Stream

exit status 1

‘qRtWUKwQL5zIiiyIzLCGP2O0syyBvOap’ was not declared in this scope

This report would have more information with
“Show verbose output during compilation”
option enabled in File -> Preferences.

Never mind. Figured it out

Quotation marks are needed around you char literals.

Pete.