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 Treehouse Club: JavaScript Car Sounds Changing Keywords

What is wrong with my code keep getting wrong answer?

What is wrong with my code keep getting wrong answer?

index.html
<!DOCTYPE html>
<html lang="en">

  <head>
  <meta name="charset" value="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=0.5, maximum-scale=0.5, minimal-ui">
    <title>Car Sounds</title>

    <!--Style Sheet link-->
    <link rel="stylesheet" type="text/css" href="css/style.css">
  </head>

  <body>

    <!--Car image -->
    <img src="images/bike.png" class="car" alt="car">


    <!--Button-->
    <a href="javascript:startCar();"><img src="images/bikeLock.png" alt="key"></a>


    <!--Audio Files-->
    <audio id="bikeBell" src="sounds/bikeBell.mp3" preload="auto"></audio>


     <!--Javascript-->
    <script type="text/javascript">
        function bikeBell()  {
         document.getElementById("bikeBell");.play();
        }


    </script>

  </body>

</html>

2 Answers

Hi there,

It looks like you've done up to the third step or so - I believe the only issue you have is an extra semicolon in your JavaScript:

function bikeBell()  {
         document.getElementById("bikeBell");.play();
                                          //^ right here
        }

If you remove that, it should pass!

Thank you so much Katie

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

Hi there! You're doing great, but there are two things going on here. Your function contains an extra semicolon which is causing a syntax error. And the button is still linked to startCar instead of bikeBell.

You need to tell the button to run the bikeBell function here:

 <!--Button-->
    <a href="javascript:bikeBell();"><img src="images/bikeLock.png" alt="key"></a>

Inside your bikeBell function you typed:

document.getElementById("bikeBell");.play();  //You have a ; between ("bikeBell") and .play()

But you meant to type:

document.getElementById("bikeBell").play();  //Remove the semicolon between ("bikeBell") and .play()

Hope this helps! :sparkles:

You are star Jennifer