From da0eea689e118c746313f106360dfd251ef7f399 Mon Sep 17 00:00:00 2001
From: Parker Rhodes
Date: Sun, 15 Mar 2026 11:13:15 -0700
Subject: [PATCH] fix(curriculum): Updated 'How Do You Access and Update
Elements in an Array?' to no longer use incorrect fruit (#66474)
---
.../lecture-working-with-arrays/6732aebaa8abb9086a9bb17a.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
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"]
```
:::