Basic JavaScript - Word Blanks

Tell us what’s happening:

i have try every method to get the sentence right but it keeps giving me error i did include the noun verb adverb and adjective to form the sentence but cant seem to find the error

Your code so far

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

// Only change code below this line
const wordBlanks = "there was a"+ "cat"+", who"+ "walked"+", in a"+ "small"+"," +"circle"+ "outside";

Your browser information:

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

Challenge Information:

Basic JavaScript - Word Blanks

Welcome to the forum @marwaa333

You need to use the provided variables in your sentence.

Happy coding

Hi and welcome to the forum :wave:

using the provided variables: myNoun, myAdjective, myVerb, and myAdverb

You don’t seem to be using the variables. Like this:

const word = "Hello";
const word2 = "welcome";

const sentence = word + " and " + word2;

we were asked to not to use them

You will need to use the string concatenation operator + to build a new string, using the provided variables: myNoun , myAdjective , myVerb , and myAdverb . You will then assign the formed string to the wordBlanks variable.