Hi, how can we add space between words? This is my code:
let favoriteAnimal= ‘hummingbird’;
console.log(‘My favorite animal’ + favoriteAnimal + ‘.’);
This is what the console displays:
My favorite animalhummingbird.
The code seems to be right but ‘animal’ and ‘hummingbird’ are together as one word.