¿Qué valor se imprimirá con el siguiente código?
int[] datos = {1, 2, 3, 4, 5}; Console.WriteLine(datos[3]);
3
5
4
2