From 511238d36e296378d454ac057c000afc2ebf3c5e Mon Sep 17 00:00:00 2001 From: PeterF521 <61094663+PeterF521@users.noreply.github.com> Date: Tue, 7 Jul 2020 14:10:04 +0100 Subject: [PATCH] challenges: description improvement (#39197) Co-authored-by: PeterF521 --- .../basic-algorithm-scripting/slice-and-splice.english.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting/slice-and-splice.english.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting/slice-and-splice.english.md index c18a1668bf..d40e6475a9 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting/slice-and-splice.english.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting/slice-and-splice.english.md @@ -10,7 +10,7 @@ forumTopicId: 301148 ## Description
You are given two arrays and an index. -Use the array methods slice and splice to copy each element of the first array into the second array, in order. +Copy each element of the first array into the second array, in order. Begin inserting elements at index n of the second array. Return the resulting array. The input arrays should remain the same after the function runs.