Chase is trying to extract records for employees 423 through 428 out of a comma separated values file and store them in another one. Which of the following commands would accomplish this? (Choose all that apply.)
O grep "42[3-8]" employees.csv > employees-newhires.csv
O cat employees.csv | grep "42[3-8]" > employees-newhires.csv
O grep "42[3-8]" < employees.csv > employees-newhires.csv