Why wont my code go through I must have made a problem but cant find it

Tell us what’s happening:
Describe your issue in detail here.

Your code so far


const myNoun = "dog";
const myAdjective = "big";
const myVerb = "ran";
const myAdverb = "quickly";

// Only change code below this line
const wordBlanks = "The" + myAdjective + " " + myNoun + " " + myVerb + "  " + myAdverb + "."; // Change this line
// Only change code above this line

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36

Challenge: Word Blanks

Link to the challenge:

Welcome to the forum.

If you put this at the bottom of your code:

console.log(wordBlanks);

it will output to the console and you should be able to see what the issue is.

Using that information, I was able to fix your code by adding 1 character and pass the tests.

let me check that out Kevin

Actually it worked perfectly … and what is it with you and Turing tests I am hoping to join turing soon

1 Like

not that Turing, but this: Turing test - Wikipedia

1 Like

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.