diff --git a/snippets/DataList.md b/snippets/DataList.md
index e3058a4ce..c52caaa51 100644
--- a/snippets/DataList.md
+++ b/snippets/DataList.md
@@ -6,7 +6,7 @@ tags: components,array,beginner
Renders a list of elements from an array of primitives.
- Use the value of the `isOrdered` prop to conditionally render a `
` or `` list.
-- Use `Array.prototype.map` to render every item in `data` as a `- ` element, give it a `key` produced from the concatenation of the its index and value.
+- Use `Array.prototype.map()` to render every item in `data` as a `
- ` element, give it a `key` produced from the concatenation of the its index and value.
- Omit the `isOrdered` prop to render a `
` list by default.
```jsx
diff --git a/snippets/DataTable.md b/snippets/DataTable.md
index d3d18148c..04fbbd893 100644
--- a/snippets/DataTable.md
+++ b/snippets/DataTable.md
@@ -6,7 +6,7 @@ tags: components,array,beginner
Renders a table with rows dynamically created from an array of primitives.
- Render a `` element with two columns (`ID` and `Value`).
-- Use `Array.prototype.map` to render every item in `data` as a `` element, consisting of its index and value, give it a `key` produced from the concatenation of the two.
+- Use `Array.prototype.map()` to render every item in `data` as a `
` element, consisting of its index and value, give it a `key` produced from the concatenation of the two.
```jsx
const DataTable = ({ data }) => {