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