function showStatistics(name, team, position, average, homeruns, rbi) { document.write("<p><strong>Name:</strong> " + arguments[0] + "<br />"); document.write("<strong>Team:</strong> " + arguments[1] + "<br />"); if (typeof arguments[2] === "string") { document.write("<strong>Position:</strong> " + position + "<br />"); } if (typeof arguments[3] === "number") { document.write("<strong>Batting Average:</strong> " + average + "<br />"); } if (typeof arguments[4] === "number") { document.write("<strong>Home Runs:</strong> " + homeruns + "<br />"); } if (typeof arguments[5] === "number") { document.write("<strong>Runs Batted In:</strong> " + rbi + "</p>"); } } showStatistics("Mark Teixeira"); showStatistics("Mark Teixeira", "New York Yankees"); showStatistics("Mark Teixeira", "New York Yankees", "1st Base", .284, 32, 101);