Skip to content

Commit 52e28b1

Browse files
committed
Fix variable name
1 parent 55d063f commit 52e28b1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/arrays/challenges.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Edit the following program so that the output is zero.
1313
void main() {
1414
// Only change this line
1515
String[] words = { "Sam", "I", "Am" };
16-
System.out.println(array.length);
16+
System.out.println(words.length);
1717
}
1818
```
1919

0 commit comments

Comments
 (0)