diff --git a/source/Ox/js/HTML.js b/source/Ox/js/HTML.js
index 81eeefb9..7da15250 100644
--- a/source/Ox/js/HTML.js
+++ b/source/Ox/js/HTML.js
@@ -64,7 +64,7 @@
},
salt = Ox.range(2).map(function(){
return Ox.range(16).map(function() {
- return Ox.char(65 + Ox.random(26));
+ return String.fromCharCode(65 + Ox.random(26));
}).join('');
});