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 JavaScript Basics Working with Strings Combine and Manipulate Strings

Maurice Ansley
Maurice Ansley
994 Points

what dose this mean?: Bummer: timeout of 2000ms exceeded. Ensure the done() callback is being called in this test.

I don't know how to move on to finish the quiz, or what the response to my attempt to assign my first and last name a value means.

app.js
let firstName = prompt("What is your first name?");
let lastName = prompt("What is your last name?");
let role = firstName + lastName + ' developer';

1 Answer

Travis Alstrand
seal-mask
STAFF
.a{fill-rule:evenodd;}techdegree
Travis Alstrand
Treehouse Teacher

Hey there Maurice Ansley ! :smiley:

This is happening because we don't need to be using the prompt method here. We just simply need to assign firstName and lastName a string value. I think it's having trouble trying to issue a prompt from within this challenge.

I hope this helps you out!