Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

JavaScript

var adjective = prompt('type an adjective'); var verb = prompt('type a verb'); var noun = prompt(

It shows this The Story Maker There was once a' + adjective + ' dog who' + verb + ' + ' + noun + ' everyday.

help meeeeee

Steven Parker
Steven Parker
229,670 Points

Jason Hill — Perhaps you meant to post this as an answer instead of a comment? Comments cannot be voted on or selected as "best answer".

1 Answer

Jason Hill
seal-mask
.a{fill-rule:evenodd;}techdegree
Jason Hill
Full Stack JavaScript Techdegree Student 11,399 Points

Without seeing your actual code, I will assume that you're having issues with the placement of your quotes in your string concatenation.
I may be wrong, but it should be something like this. If this helped you, you can select it as 'Best Answer' below.

var adjective = prompt("Please Enter an Adjective");
var verb = prompt("Please enter a Verb");
var noun = prompt("Please enter a Noun");
console.log("There was once a " + adjective + " " + noun + " who " + verb + " everyday.");