Predict the correct output of the code given below:
using System;
class Program {
static void Main(string[] args) {
Byte[] numbers = {
10,
20,
30,
40
};
Console.Write(numbers[1]);
Console.ReadLine();
}
}
Reveal answer
Fill a bubble to check yourself