struggling with this problem
assign the length of the measurements array to the variable numberofMeasurements.
using System;
namespace HelloWorld
{
class Program
{
static void Main(string[] args)
{
int[] measurements = { 4, 6, 8, 3, 2 };
int numberOfMeasurements;
Console.WriteLine(numberOfMeasurements);
}
}
}