Tell us what’s happening:
I am creating the variable and assigning it the correct value (with the space after the word Love)
const repeatedLove = "Love ".repeat(3);
then logging to the console
console.log(repeatedLove);
I keep getting a: You should log the repeatedLove variable
and
What am missing?
Your code so far
// User Editable Region
const repeatedLove = "love ".repeat(3);
console.log(repeatedLove);
// User Editable Region
Your browser information:
User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36
Challenge Information:
Build a String Transformer - Step 9