Sometimes content of arrays in the "Whatches" windows are wrong: all elements are shifted (i.e. A[1] is displayes on the first place, A[2] on the 2nd, ..., A[0] is displayed last).
Steps to reproduce:
1. Create a simple console application with one c++ file:
int main()
{
int A[5];
A[0]=1;
return 0;
}
2. Set breakpoint to the line A[0]=1 and start debugging application.
3. After reaching breakpoint open "Watches" window, A is displayed as {2009315348,4012952,4012888,8,2009312941}:

4. After executing line A[0]=1, A is displayed as
{4012952,4012888,8,2009312941,1}, i.e. all elements of A are shifted to the left:

I am using 20060904 nightly build on windows and older revision on Linux.