配列を乱数で埋めるアプリケーションを作成する必要があります。コード全体を書いて動作しますが、コンソール ウィンドウに数字が表示されません。コードのどこが間違っている可能性がありますか? ありがとう
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Arrays
{
    class Program
    {
        static void Main(string[] args)
        {
            int[] array = new int[10]; 
            Random randomNumbers = new Random();
            for (int i = 0; i < array.Length; i++)
            {
                int randomValue = randomNumbers.Next(0,500);
                array[i] = randomValue;
            }
            for (int i = 0; i < array.Length; i++)
            {
                Console.WriteLine("The array value is: ", array[i]);
            }
        }
    }
}