Text is a string
A string is a piece of text wrapped in quotes, like "hello". Quotes are how the computer knows it's text and not code. You can store a string in a variable just like a number.
Joining strings
The + operator concatenates strings — it sticks them end to end. Notice the space inside the quotes; without it the words would jam together:
TIP
You can join text and numbers too: "Score: " + 42 becomes the string "Score: 42".