diff --git a/1-js/05-data-types/04-array/article.md b/1-js/05-data-types/04-array/article.md index 781699f7..8246c9dd 100644 --- a/1-js/05-data-types/04-array/article.md +++ b/1-js/05-data-types/04-array/article.md @@ -113,7 +113,7 @@ There's another use case for arrays -- the data structure named [stack](https:// It supports two operations: - `push` adds an element to the end. -- `pop` takes an element to the end. +- `pop` takes an element from the end. So new elements are added or taken always from the "end".