Scramble

by Ryan Perez

HTML

<button id="scramble">Scramble</button>
<p>

MORE LIKE THIS
Looking for Twitter alternatives? Here’s how to use Mastodon
Hello, Elon. Goodbye, the Twitter we once knew
Meet the new team of advisers Elon Musk has tapped to reshape Twitter
BY MARK WILSON1 MINUTE READ
Lorem ipsum. To most of us, it’s a passage of meaningless Latin that fills websites or brochure layouts with text while waiting on writers to fill it with real copy. And in fact, lorem ipsum was designed as nonsense from the beginning. Its use rose to prominence as early as the 1500s, when an unknown printer created a test passage for a printing press by scrambling The Extremes of Good and Evil, written by Cicero in 45 B.C. And we’re still using the same old gibberish today.</p>

JavaScript

var allWords = document.querySelectorAll("p, h1, h2, h3, h4, h5, h6, ul, ol, span");
for (var i = 0; i < allWords.length; i++) {

while (i < 4) {
    allWords[i].style.color = "red";
    }
}