File size: 392 Bytes
7569c73
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
() => {
    let example_input = ["Once upon a time, there was a little girl", 
                 "John and Sarah were playing together in their backyard when",
                 "It was a warm summer day when Billy and",
    ];
    let input_textbox = document.querySelector("#input_textbox textarea")
    input_textbox.value = example_input[Math.floor(Math.random() * example_input.length)];
}