diff --git a/fuzzer/Fuzzer.java b/fuzzer/Fuzzer.java
index 31eb49c09af85ba97ddc5bcb5dd355437911d8d3..68db6dee7658e86e6f0f9c259bce30f37a19cf56 100644
--- a/fuzzer/Fuzzer.java
+++ b/fuzzer/Fuzzer.java
@@ -30,7 +30,7 @@ public class Fuzzer {
 					double spaceType = Math.random();
 					if(spaceType > 0.8){
 						outputString += "\t";
-					}else{
+					}else if(spaceType<=0.75){
 						outputString += " ";
 					}
 					outputString += getRandomName(getRandomInt(0, MAX_LINE_LENGTH - outputString.length() - 1), false);
@@ -38,7 +38,7 @@ public class Fuzzer {
 					double spaceType = Math.random();
 					if(spaceType > 0.8){
 						outputString += "\t";
-					}else{
+					}else if(spaceType<=0.75){
 						outputString += " ";
 					}
 					outputString += getRandomName(getRandomInt(0, MAX_LINE_LENGTH - outputString.length() - 5), true);