The all-caps in the instructions indicates a placeholder. We might infer the result should be the same uppercase, but it is not specified in the instructions.
You can use single quotes ' or double quotes " to create string literals.
An advantage using one over the other could be that you have a single quote in your string:
const exampleString = "I'm using a single quote as an apostrophe.";
Here you can use double quotes so that the single quote used for the apostrophe in I’m does not affect your string.
You can use single quotes to surround your string to use double quotes within your string.
const secondExample = 'He explained, "This is one way to quote someone."';
There are also a few other ways to go about it. This documentation about javascript strings shows you how to use escape characters (look for the Escape Notations header) and has more info on strings. https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String
You could also use a string template literal which is covered later in this course.
@mtf Should I had not used that link because it was from another learning platform? Is it okay to link the Mozilla documentation to learn about escape characters?
I was confused and thought I had to do let ANIMAL = favoriteAnimal for the second line and then console.log('My favorite animal: " + ANIMAL) but it ended up being simpler than that. I was a little mad.
The exercise is not expecting an empty string, and then why would it? Sometimes we need to keep our personal preferences out of it and just play along. Don’t make it about yourself, that will only interfere with learning.