This is my code, and I have provided the answer of the code as an image. Why is the answer not coming normally? For example I inputted six 1's. [1]: https://i.stack.imgur.com/TkS7r.png
int main()
{
int numbers [6] {};
for (int i = 0; i <= 5; i++)
{
cout << "Enter number " << i + 1 << " : ";
cin >> numbers [i];
}
cout << endl;
cout << numbers << endl;
cout << endl;
return 0;
}