diff --git a/js/array-splice/index.md b/js/array-splice/index.md index 9a27f57c07..bfb5bfe9fb 100644 --- a/js/array-splice/index.md +++ b/js/array-splice/index.md @@ -28,7 +28,7 @@ const tasks = [ ] tasks.splice(1, 2) -console.tasks(tasks) +console.log(tasks) // ['Проверить тесты', 'Обновить бэклог'] ```