i am having trouble displaying this array output to a form. what is the issue I am sure it is an easy fix and being new to c# programming i seem to find my error
class Program
{
public static void Menu ()
{
string[] names = { "Bob Johnson", "Amy Larsen", "Reed McMichels", "Mary Jones", "Sheila Stone" };
for (int i = 0; i < names.Length; i++)
{
Console.WriteLine(names[i]);