diff --git a/content/roadmaps/106-javascript/content/104-javascript-data-structures/101-keyed-collections/102-set.md b/content/roadmaps/106-javascript/content/104-javascript-data-structures/101-keyed-collections/102-set.md
index b5fdecda9..e6418946f 100644
--- a/content/roadmaps/106-javascript/content/104-javascript-data-structures/101-keyed-collections/102-set.md
+++ b/content/roadmaps/106-javascript/content/104-javascript-data-structures/101-keyed-collections/102-set.md
@@ -1 +1,8 @@
-# Set
\ No newline at end of file
+# Set
+
+The `Set` object lets you store unique values of any type, whether [primitive](https://developer.mozilla.org/en-US/docs/Glossary/Primitive) values or object references. A value in the `Set` may only occur once; it is unique in the `Set`'s collection.
+
+Free Content
+
+Set - JavaScript
+Set - ExploringJS