If the string on the left isn't equal to the string on the right, as in "apple" === "orange", the result is false.
"apple" === "orange"
false
Make sure to pick ===, followed by "orange".
===
"orange"