<In what way does your code behave incorrectly? Include ALL error messages.>
Say we want to write a program that asks whether your name is longer than 7 letters. If the answer is yes, we can respond with “You have a long name!”
```
if( “myName”.length >= 7 ) {
console.log(“You have a long name!”);
}