diff --git a/1-js/05-data-types/09-keys-values-entries/article.md b/1-js/05-data-types/09-keys-values-entries/article.md index 38ed99e5..ca0be768 100644 --- a/1-js/05-data-types/09-keys-values-entries/article.md +++ b/1-js/05-data-types/09-keys-values-entries/article.md @@ -83,7 +83,7 @@ If we'd like to apply them, then we can use `Object.entries` followed `Object.fr For example, we have an object with prices, and would like to double them: ```js run -let users = { +let prices = { banana: 1, orange: 2, meat: 4,