TerrariaSuper mario 64Tic Tac Toe
diff --git a/Games/index.js b/Games/index.js
new file mode 100644
index 0000000..d5b8423
--- /dev/null
+++ b/Games/index.js
@@ -0,0 +1,7 @@
+function sortList(ul) {
+ var ul = document.getElementById(ul);
+
+ Array.from(ul.getElementsByTagName("A"))
+ .sort((a, b) => a.textContent.localeCompare(b.textContent))
+ .forEach(li => ul.appendChild(li));
+ }
\ No newline at end of file