Skip to content

Commit

Permalink
fixed bug maybe
Browse files Browse the repository at this point in the history
  • Loading branch information
maddox05 committed Aug 30, 2023
1 parent f58b589 commit 55d7926
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ function get_1kwords(){
let array_of_1kwords = textData.split("\n");
let array_of_100words = [];

for(let i = 0; i < 100; i++){
for(i = 0; i < 100; i++){
array_of_100words.push(array_of_1kwords[Math.floor(Math.random() * 100)]);
}
let char_w_array100 = array_to_char(array_of_100words);
char_w_array100 = array_to_char(array_of_100words);
add_chars_to_div(char_w_array100);
})
.catch(error => {
Expand Down

0 comments on commit 55d7926

Please sign in to comment.