JSFiddle - React, Tailwind, and code Playground

by Josh Pullen

JavaScript

var target = "These are a few real english words to help you identify the correct answer. https://scratch.mit.edu/projects/92763885/";
var final = "";
var possible = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789.?/!,[]{}():\";
var jumpDist = 54;

for(i = 0; i < target.length; i++) {
	for(n = 1; n < jumpDist; n++) {
    	final += possible.charAt(Math.floor(Math.random() * possible.length));
    }
    final += target.charAt(i);
}

console.log(final);