diff --git a/src/content/learn/index.md b/src/content/learn/index.md
index 15e3b28663c..50f7e6e50d0 100644
--- a/src/content/learn/index.md
+++ b/src/content/learn/index.md
@@ -247,7 +247,7 @@ return (
);
```
-Notice how `
` has a `key` attribute. For each item in a list, you should pass a string or a number that uniquely identifies that item among its siblings. Usually, a key should be coming from your data, such as a database ID. React uses your keys to know what happened if you later insert, delete, or reorder the items.
+Notice how `` has a `key` attribute. React requires keys to distinguish each item from the others. For each item in a list, you should pass a string or a number that uniquely identifies that item among its siblings. Usually, a key should be coming from your data, such as a database ID. React uses your keys to know what happened if you later insert, delete, or reorder the items. The keys are specific to a particular list of items.