diff --git a/other/csv-merge/index.html b/other/csv-merge/index.html
index b5debd9..d1b46f9 100644
--- a/other/csv-merge/index.html
+++ b/other/csv-merge/index.html
@@ -5,7 +5,7 @@
Document
-
+
diff --git a/other/csv-merge/index.js b/other/csv-merge/index.js
index cc797e7..317276f 100644
--- a/other/csv-merge/index.js
+++ b/other/csv-merge/index.js
@@ -4,7 +4,7 @@ var array256 = "null"
var array1 = "null"
var output = "null"
var linesDone = "1"
-const outputArea = document.getElementById("outputArea").value
+const outputArea = document.getElementById("outputArea")
function loadFiles() {
loadString()
@@ -62,7 +62,7 @@ function mergeToCsv() {
Astring = arrayString[linesDone];
A1 = array1[linesDone];
output = Astring + "," + Amd5 + "," + A1 + "," + A256
- outputArea = outputArea + "\n" + output
+ outputArea.value = outputArea.value + "\n" + output
}
linesDone + 1
}