From 2b166e94473084b32dc2d3cf0b4bd254e1daba1b Mon Sep 17 00:00:00 2001 From: Micah Stubbs Date: Sun, 17 Sep 2017 17:12:54 -0700 Subject: [PATCH] Reggie --> Reggae https://en.wikipedia.org/wiki/Reggae --- 1-js/05-data-types/04-array/2-create-array/task.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/1-js/05-data-types/04-array/2-create-array/task.md b/1-js/05-data-types/04-array/2-create-array/task.md index e6dab6a9..3e930079 100644 --- a/1-js/05-data-types/04-array/2-create-array/task.md +++ b/1-js/05-data-types/04-array/2-create-array/task.md @@ -10,7 +10,7 @@ Let's try 5 array operations. 2. Append "Rock-n-Roll" to the end. 3. Replace the value in the middle by "Classics". Your code for finding the middle value should work for any arrays with odd length. 4. Strip off the first value of the array and show it. -5. Prepend `Rap` and `Reggie` to the array. +5. Prepend `Rap` and `Reggae` to the array. The array in the process: @@ -19,6 +19,6 @@ Jazz, Blues Jazz, Bues, Rock-n-Roll Jazz, Classics, Rock-n-Roll Classics, Rock-n-Roll -Rap, Reggie, Classics, Rock-n-Roll +Rap, Reggae, Classics, Rock-n-Roll ```