From 98cffcc7ac940f94dfab0157880cb19ab7cdd88c Mon Sep 17 00:00:00 2001 From: Joe-Wilson Date: Tue, 22 Jan 2019 14:05:33 -0500 Subject: [PATCH] Update index.md (#30718) Added info about array values. --- guide/english/java/arrays/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/java/arrays/index.md b/guide/english/java/arrays/index.md index 39abeb8a88..77c4426aef 100644 --- a/guide/english/java/arrays/index.md +++ b/guide/english/java/arrays/index.md @@ -149,7 +149,7 @@ Output: ### Multi-dimensional Arrays -Two-dimensional arrays (2D arrays) can be thought of as a table with rows and columns. Though this representation is only a way to visualize the array for better problem-solving. The values are actually stored in sequential memory addresses only. +Two-dimensional arrays (2D arrays) can be thought of as a table with rows and columns. Though this representation is only a way to visualize the array for better problem-solving. The values are actually stored in sequential memory addresses only. Additionally, their coordinate system is different from cartesian coordinates in that array values are referenced row then column. ```java int M = 5; int N = 5;