<Below this line, in what way does your code behave incorrectly? Include ALL error messages.>
It won’t tell me what is wrong with my coding and I can’t go forward past this section.
```
var moonPhase = ‘solar eclipse’;
if (moonPhase === ‘full’) {
console.log(‘Howwwlll!!’);
} else if (moonPhase === ‘mostly full’) {
console.log(‘Arms and legs are getting hairier.’);
} else if (moonPhase === ‘mostly new’) {
console.log(‘Back on two feet’);
} else {
console.log(‘Invalid moon phase’);
}