keyword can't be an expression

JavaScript
else: print(name + " sleeps all night and " + name = " works all day!")

#The line below is wrong. You are using "=" sign as if you were assigning name to a new string within the print function. Doesn't work that way.
Source

Also in JavaScript: