public static void Main()
int[] holePars = { 4, 3, 4, 4, 5, 4, 5, 3, 4, 4, 3, 5, 4, 4, 5, 4, 3, 4};
int[,] holeScores = new int[18, 4];
int[] totals = {0, 0, 0, 0};
var randomScores = new Random();
Console.WriteLine("Hole Par Golfer 1 Golfer 2 Golfer 3 Golfer 4");
for (int i = 0; i < 9; i++)
Console.Write($" {i + 1}{holePars[i],4} ");
for (int j = 0; j < 4; j++)
holeScores[i,j] = randomScores.Next(holePars[i] - 2, holePars[i] + 3);
Console.Write($"{holeScores[i,j],-9}");
totals[j] += holeScores[i,j];
Console.WriteLine($"Front {totals[0]} {totals[1]} {totals[2]} {totals[3]}");