Set the colorA and colorB variables to "red".

Then use the equality operator to compare the variables holding strings. 

See that? Since the colorA variable and the colorB variable both are set to "red", the equality operator === returns true.

Set colorA to "red" by assembling var colorA = "red";. Then compare the variables by assembling colorA === colorB.