Visual Logic to create a program that prompts a user to enter their nam

ey everyone I need some help with using Visual Logic to create a program that prompts a user to enter their name, student ID number, and the test scores for a maximum of 10 quizzes taken. The main method will define an array of 10 elements. A loop will be used to prompt the user to enter the 10 values that will go into the 10 array elements. The main method will call a method to print the contents of the array, passing the array by reference and the array length by value.

Use Console for input and output. Write pseudocode for the application to help you plan for your flowchart.

Example output (user response in red):

Enter student name: yourname

Enter student ID number: 999999999

Enter score: 77

Enter score: 05

Enter score: 99

Enter score: 74

Enter score: 66

Enter score: 89

Enter score: 91

Enter score: 80

Enter score: 59

Enter score: 88

Here are your array contents:

Array (0) = 98 ………… and so forth

Looking for:

A .vls file with completed

looking for:

Pseudocode:

Correct input statement:

Uses Console I/O:

Uses a method (procedure) to print the array with correct parameters:

Correct output at end of program: