Strings are declared using the " ' or `respectively.
For example, to create a String variable called name, we use the following code:
let name = "John";
or to declare a String constant called country, we use the following code:
const country = "Germany";
Now, for our caesar cipher decryption program, we will need to store our message and all the letters in our alphabet as Strings. In the code below, create a variable called message and set it to hello and a constant called ALPHABET (note the capitals!) set it to abcdefghijklmnopqrstuvwxyz