ou would like to create a practical program that will randomly select student names from a list for your instructor to be able to call on people. What are the steps for creating this program? Explain your answer in 3-5 sentences.(4 points)

1. First, create a list of student names that the program will select from. This list can be stored in a text file or directly in the program code.

2. Next, write a function that will read the list of student names and randomly select a name from the list. You can use a built-in random number generator function to ensure the selection is truly random.

3. Finally, create a loop in your program that allows your instructor to call on students by running the random selection function each time they want to pick a new student.

4. Test the program to ensure that it is working correctly and that each student has an equal chance of being selected. Make any necessary adjustments to the code if needed.