diff --git a/1-js/07-object-oriented-programming/05-native-prototypes/article.md b/1-js/07-object-oriented-programming/05-native-prototypes/article.md index 949e2d57..6c29c7f1 100644 --- a/1-js/07-object-oriented-programming/05-native-prototypes/article.md +++ b/1-js/07-object-oriented-programming/05-native-prototypes/article.md @@ -156,7 +156,7 @@ function showArgs() { */!* } -showList("John", "Pete", "Alice"); // John - Pete - Alice +showArgs("John", "Pete", "Alice"); // John - Pete - Alice ``` Because `join` resides in `Array.prototype`, we can call it from there directly and rewrite it as: