Quotes
Single and double quotes are used to define strings, but have a key
difference. Single quotes take characters inside a string literally
while double quotes run variables placed inside.
My name is $name. Here, single quotes read the variable literally
as it is.
My name is Brandon. Here, double quotes were used to substitue the variable
for the value it was given in the code