The Code
The code is structured in with three functions.
GetValues()
This function is our entry point. First we grab the inputs and reassign them from strings to integers. We then check to ensure that the inputs are actually integers and if so we are going to generate a list of numbers between the input number values and display them. If one of the inputs is not an integer let the user know they must enter numbers only.
GenerateNumbers()
To generate the numbers we loop through all the numbers from the starting value to the ending value and push each one into an array. When the loop has finished running, we return the array that we created.
DisplayNumbers()
Once we have our numbers we pass that array into a display function. We loop throught he array and use the modulo operator on each value to check if its even or odd and then assign an appropriate class for css styling. We then check if the current value should be on the current row of the table or if a new row should be started. In this case we are keeping the table 5 columns wide. Now all we need to do is use a template literal to build the cell datas html using the correct css class and value. This is then appended onto the end of the exitisting tableHTML string, and the loop runs again till we finish building the table string. To show it on the screen we set the innerHtml of our results div to our completed tableHTML string.