Here is what I've wrote for an assignment..I would simply like to add a space between the song name and year and enclose the year in parentheses. Thanks yet again.
Jake
<script type="text/javascript">
<!-- HIDE FROM INCOMPATIBLE BROWSERS
var favSongs = new Array(19);
favSongs[0] = "Falls Apart";
favSongs[1] = "Monster";
favSongs[2] = "All the Right Moves";
favSongs[3] = "Beautiful Thieves";
favSongs[4] = "Walk Away";
favSongs[5] = "The Way You Lived";
favSongs[6] = "Welcome Home";
favSongs[7] = "Wish You Were Here";
favSongs[8] = "Times Like These";
favSongs[9] = "I'd Come for You";
favSongs[10] = "Second Chance";
favSongs[11] = "So Far So Good";
favSongs[12] = "Sooner or Later";
favSongs[13] = "Little Sister";
favSongs[14] = "Down";
favSongs[15] = "Gasoline";
favSongs[16] = "Lonely Day";
favSongs[17] = "Are You With Me";
favSongs[18] = "Lost In You";
favSongs[19] = "Savior";
var songYear = new Array(19);
songYear[0] = "2007";
songYear[1] = "2009";
songYear[2] = "2009";
songYear[3] = "2009";
songYear[4] = "2009";
songYear[5] = "2005";
songYear[6] = "2005";
songYear[7] = "2001";
songYear[8] = "2002";
songYear[9] = "2008";
songYear[10] = "2008";
songYear[11] = "2004";
songYear[12] = "2004";
songYear[13] = "2005";
songYear[14] = "2002";
songYear[15] = "2002";
songYear[16] = "2005";
songYear[17] = "2010";
songYear[18] = "2009";
songYear[19] = "2008";
document.write("<p>Here are 20 of my favorite songs along with the year each was published.</p>");
for (var count = 0; count < 20; ++count) {
document.write(favSongs[count] + songYear[count] + "<br />");
}
// STOP HIDING FROM INCOMPATIBLE BROWSERS -->
</script>