Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

micheleg
3,808 PointsI don't understand this question, what they're asking for.
I'm sorry I can't specify better than that. This is the question: "Select the button with the ID sayPhrase and assign it to the button variable."
var button;
var input;
button.addEventListener('click', () => {
alert(input.value);
});
button = document.getElementById('sayPhrase');
<!DOCTYPE html>
<html>
<head>
<title>Phrase Sayer</title>
</head>
<body>
<p><input type="text" id="phraseText"></p>
<p><button id="sayPhrase">Say Phrase</button></p>
<script src="js/app.js"></script>
</body>
</html>
2 Answers

Dylan Glover
2,525 PointsHey Michele, So this step in the challenge just wants you to assign the button variable in your JavaScript to the sayPhrase
ID from your HTML page.
It would look like this:
var button = document.getElementById('sayPhrase');
Hope this helps!
Dylan

Emmanuel C
10,635 PointsHey Michele,
You actually did it correctly except, they want you to assign it to the variable they provided, when its declared on line 1, and same on line 2 for next task

micheleg
3,808 PointsThanks Emmanuel!
micheleg
3,808 Pointsmicheleg
3,808 PointsThank you!! :)