diff --git a/prototype/UI/index.html b/prototype/UI/index.html
index 1279351fc..1a0edbe0b 100644
--- a/prototype/UI/index.html
+++ b/prototype/UI/index.html
@@ -34,7 +34,7 @@
if (json instanceof Array) {
console.log("it's an array");
for (index in json) {
- console.log(json[index]);
+ div.appendChild(toDOM(json[index]));
}
} else if (json instanceof Object) {
for (key in json) {