Definition: An Argument is a variable used by a function that has been passed to that function. The values for the arguments are passed as parameters when the function is called. The arguments are listed between parentheses immediately following the function name in the function declaration.
Alternate Spellings: arguement
Examples:
function displayCount(count,stop) {

