Console.WriteLine(n12(c12))
Console.WriteLine(n13(9 - c13))
Console.WriteLine("Input the size of your array.")
Console.WriteLine("Below is your array with the squareroot of every number unitl your input value")
Console.WriteLine(n2(c2))
Console.WriteLine("Enter the values for your array. There are 10 items and it will be cancelled if -1 is entered.")
n3(c3) = Console.ReadLine
Console.WriteLine("The sum of all the items in the array is " & sum)
Console.WriteLine("There are " & l & " items in the array")
Console.WriteLine("The highest value is " & max)
Console.WriteLine("The lowest value is " & min)
Dim highmode As Decimal = 0
If n3(c3) = max Then highmode = highmode + 1
Console.WriteLine("The highest value " & max & " has been entered " & highmode & " times")
Dim lowmode As Decimal = 0
If n3(c3) = min Then lowmode = lowmode + 1
Console.WriteLine("The lowest value " & min & " has been entered " & lowmode & " times")