diff --git a/solutions/day-01/30DaysOfJS/index.html b/solutions/day-01/30DaysOfJS/index.html
new file mode 100644
index 0000000..68f3f4b
--- /dev/null
+++ b/solutions/day-01/30DaysOfJS/index.html
@@ -0,0 +1,12 @@
+
+
+
+ 30DaysOfScript:Internal Script
+
+
+
+
+
+
\ No newline at end of file
diff --git a/solutions/day-01/level1.js b/solutions/day-01/level1.js
new file mode 100644
index 0000000..96fc427
--- /dev/null
+++ b/solutions/day-01/level1.js
@@ -0,0 +1,13 @@
+const array = [];
+const arraOfNumbers = [1, 2, 3, 4, 5, 6];
+let lengtharraOfNumbers = arraOfNumbers.length;
+const firstItem = arraOfNumbers[0];
+//Get the first item,
+console.log(firstItem);
+console.log(lengtharraOfNumbers);
+//Get the middle item
+let middleItem = lengtharraOfNumbers / 2;
+console.log(middleItem);
+//Get the last item
+const [lastItem] = arraOfNumbers.slice(-1);
+console.log(lastItem);
\ No newline at end of file