diff --git a/curriculum/challenges/english/blocks/lecture-working-with-arrays/6732aebaa8abb9086a9bb17a.md b/curriculum/challenges/english/blocks/lecture-working-with-arrays/6732aebaa8abb9086a9bb17a.md index 57633875419..a22fe7a2f79 100644 --- a/curriculum/challenges/english/blocks/lecture-working-with-arrays/6732aebaa8abb9086a9bb17a.md +++ b/curriculum/challenges/english/blocks/lecture-working-with-arrays/6732aebaa8abb9086a9bb17a.md @@ -49,7 +49,7 @@ In this example, we've replaced `banana` with `blueberry` at index `1`. This met ```js let fruits = ["apple", "banana", "cherry"]; fruits[3] = "date"; -console.log(fruits); // ["apple", "blueberry", "cherry", "date"] +console.log(fruits); // ["apple", "banana", "cherry", "date"] ``` :::