diff --git a/function/random/random.html b/function/random/random.html
index dd25e067..7443615f 100644
--- a/function/random/random.html
+++ b/function/random/random.html
@@ -31,8 +31,8 @@
color:"#E2D96E",
defaults: {
name: {value:""},
- low: {value:"",validate:function(v) { return !isNaN(v) || v.length === 0;} },
- high: {value:"",validate:function(v) { return !isNaN(v) || v.length === 0;} },
+ low: {value: 1,validate:function(v) { return !isNaN(v) || v.length === 0;} },
+ high: {value: 10,validate:function(v) { return !isNaN(v) || v.length === 0;} },
inte: {value:"true"},
property: {value:"payload",required:true}
},