Additional information: Index was outside the bounds of the array."
The code is:
for(int i = 0; i <= numbers.Length - 1; i++)
{
where.Text += numbers[i].ToString() + " /r/n ";
}
I apologise if it is something obvious - I am a beginner.
Many thanks.