diff --git a/qrcode.html b/qrcode.html
index 5847dd7..d09e3f8 100644
--- a/qrcode.html
+++ b/qrcode.html
@@ -49,13 +49,9 @@
];
-
- for( var c = 0; c < qrcodes.length; c++ ) {
-
- document.body.appendChild( qrcodes[ c ] );
- }
+ qrcodes.forEach( ( element ) => document.body.appendChild( element ) )