diff --git a/index.html b/index.html
new file mode 100644
index 0000000..5c92a67
--- /dev/null
+++ b/index.html
@@ -0,0 +1,11 @@
+
+
+
+
+
+ Document
+
+
+
+
+
\ No newline at end of file
diff --git a/script.js b/script.js
new file mode 100644
index 0000000..1a29f86
--- /dev/null
+++ b/script.js
@@ -0,0 +1,8 @@
+
+function reverseString(str) {
+ return str.split("").reverse().join("");
+}
+
+console.log(reverseString("hello"));
+console.log(reverseString("SuperDeeDuper"));
+