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 Hello, JavaScript! Write JavaScript Statements

i cant move on with my course

index.html
<!DOCTYPE HTML>
<html>
  <head>
    <meta charset="utf-8">
    <title>JavaScript Basics</title>
  </head>
  <body>
    <script src="app.js"></script>
    a
  </body>
</html>
app.js
console.log("Begin Program");
alert('I am programming')
alert('I am Programing')

3 Answers

Michael Ward
Michael Ward
3,449 Points

I just started learning to code a couple weeks ago, but as far as I can see coding is about being very, very meticulous with things. I completely understand how frustrating it can be, but in all honesty none of those examples you provided are technically correct. You got the capitalization and punctuation wrong on the first alert, and then Programming is misspelled in the 2nd alert, plus the punctuation. I know it sounds trivial, but one little error in code can mess your whole program up, and I think that is the point they are trying to relay here. Hope this is helpful.

Please refrain from using this type of language on Treehouse. If you have any issues there are many teachers that can assist you, including if you submit the issue via their help option.

Blaize Pennington
Blaize Pennington
13,878 Points

Woah, dude. Sometimes things can be frustrating, but there is no reason for that language. The way treehouse checks your code is for exact matches. So your issue here is the challenge told you to alert "I am Programming!" and you wrote, "I am Programing". I know in the grand scheme of teaching, that exclamation mark is unnecessary, but for checking your code, you have to write it exactly as the instructions ask.

Also, you only need one alert.