Use a ternary operator to check if currentTitle evaluates to a truthy value. If it does, set playingSong.textContent to currentTitle. Otherwise, set it to an empty string.
Notice that all of the logic is on the right side of the equals sign and the variable you want to set is on the left side of the equals sign. In your solution, is the logic on the correct side of the equals sign? And you are supposed to be setting the value for playingSong.textContent but I don’t see that in your solution at all. Which side of the equals sign should you add it to?