The Code
getValues
This function takes the user input, assigns each field to a variable. We convert the user input to intergers, and validate them. Then uses those variables to call the next functions.
generateNumbers
Here we use loop to count from the starting value to the end value. Every loop we push the loop number to a new array that we then pass back to the calling function.
displayNumbers
In this function we build out the HTML to be shown to the user. We start loop over the array once, wrapping each element in HTML, adding an odd or even class based on the number. Each time we loop over it we add the new Div to the string that we will then display to the user.