using System.Collections.Generic;
public static int getInteger()
List<int> array2 = new List<int> { 1, 3, 5, 7, 9 };
var random = new Random();
var total = (int)array2.OrderBy(digit => random.Next()).Select((digit, index) => digit*Math.Pow(10, index)).Sum();
public int[] Shuffle(int[] Sequence)
throw new ArgumentNullException(nameof(Sequence));
for(int s = 0; s < Sequence.Length - 1; s++)
int GenObj = GenerateAnotherNum(s, Sequence.Length);
Sequence[s] = Sequence[GenObj];
public static void Main()
Console.WriteLine("Hello World");