diff --git a/content/roadmaps/109-golang/content/100-go-basics/113-slices.md b/content/roadmaps/109-golang/content/100-go-basics/113-slices.md
index 18773da0a..93be551a8 100644
--- a/content/roadmaps/109-golang/content/100-go-basics/113-slices.md
+++ b/content/roadmaps/109-golang/content/100-go-basics/113-slices.md
@@ -1 +1,9 @@
-# Slices
\ No newline at end of file
+# Slices
+
+Slices are similar to arrays but are more powerful and flexible. Like arrays, slices are also used to store multiple values of the same type in a single variable. However, unlike arrays, the length of a slice can grow and shrink as you see fit.
+
+Free Content
+
+Go Slices
+Slices in Go
+Learn Go Programming - Slices (by freeCodeCamp on YouTube)