From 65d2023e62d9ee67a9c7ff7a0023c3a43f87961b Mon Sep 17 00:00:00 2001
From: Mattia De Vivo <39778636+mattiadevivo@users.noreply.github.com>
Date: Tue, 6 Sep 2022 23:48:25 +0200
Subject: [PATCH] Add go array resources (#1707)
---
.../109-golang/content/100-go-basics/112-arrays.md | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/content/roadmaps/109-golang/content/100-go-basics/112-arrays.md b/content/roadmaps/109-golang/content/100-go-basics/112-arrays.md
index 6bfa7b9a1..2e5a533ec 100644
--- a/content/roadmaps/109-golang/content/100-go-basics/112-arrays.md
+++ b/content/roadmaps/109-golang/content/100-go-basics/112-arrays.md
@@ -1 +1,7 @@
-# Arrays
\ No newline at end of file
+# Arrays
+
+In Go an `array` is a collection of elements of the same type with a **fixed** size defined when the array is created.
+
+Free Content
+Go Arrays
+Learn Go Programming - Arrays (by freeCodeCamp on YouTube)