-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path038-word-blanks.js
21 lines (19 loc) · 1.26 KB
/
038-word-blanks.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
Word Blanks:
In this challenge, we provide you with a noun, a verb, an adjective and an adverb.
You need to form a complete sentence using words of your choice, along with the words we provide.
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. You should not change the words assigned to the variables.
You will also need to account for spaces in your string, so that the final sentence has spaces between all the words.
The result should be a complete sentence.
- wordBlanks should be a string.
- You should not change the values assigned to myNoun, myVerb, myAdjective or myAdverb.
- You should not directly use the values dog, ran, big, or quickly to create wordBlanks.
- wordBlanks should contain all of the words assigned to the variables myNoun, myVerb, myAdjective and myAdverb separated by non-word characters (and any additional words in your madlib).
*/
const myNoun = "dog";
const myAdjective = "big";
const myVerb = "ran";
const myAdverb = "quickly";
// Only change coded below this line
const wordBlanks = "The " + myAdjective + " " + myNoun + " " + myVerb + " so " + myAdverb; // Changed this line