diff --git a/1-js/05-data-types/05-array-methods/7-map-objects/solution.md b/1-js/05-data-types/05-array-methods/7-map-objects/solution.md index 9085b631..5d8bf4a1 100644 --- a/1-js/05-data-types/05-array-methods/7-map-objects/solution.md +++ b/1-js/05-data-types/05-array-methods/7-map-objects/solution.md @@ -21,8 +21,8 @@ usersMapped = [ ] */ -alert( usersMapped[0].id ) // 1 -alert( usersMapped[0].fullName ) // John Smith +alert( usersMapped[0].id ); // 1 +alert( usersMapped[0].fullName ); // John Smith ``` Please note that in for the arrow functions we need to use additional brackets.