diff --git a/1-js/05-data-types/05-array-methods/article.md b/1-js/05-data-types/05-array-methods/article.md index 11905ba4..d836a12d 100644 --- a/1-js/05-data-types/05-array-methods/article.md +++ b/1-js/05-data-types/05-array-methods/article.md @@ -100,7 +100,7 @@ alert( arr ); // "I", "study", "complex", "language", "JavaScript" ``` ````smart header="Negative indexes allowed" -Here and in other array methods, negative indexes are allowed. The specify the position from the end of the array, like here: +Here and in other array methods, negative indexes are allowed. They specify the position from the end of the array, like here: ```js run let arr = [1, 2, 5]