Print valid or invalid input in console based on textArea.value

I am trying to build a function in JavaScript that prints “valid input” in console if all characters in the textbox are other than alphabets (upperCase, lowerCase). But if any of character in the textbox is alphabet then it prints “valid input”. I used a button to invoke this function.

Test case for more understanding:
“Lorem ipsum dolor sit amet” (valid)
“54646475” (invalid)
“#$#$” (invalid)
“Lorem ipsum 655746 dolor sit amet” (valid)
“Lorem ipsum dolor sit #$%^ amet” (valid)
“Lorem ipsum 7746 dolor %$^& sit amet” (valid)

I am confused about logic building of this problem.

Firstly I go with regular expression but did’nt understood how to implement it in this problem. Still stucked.

function capCaseHandle() {
        const allCharRegExp = /[w]+/;
        let text = document.getElementById("textArea");
        if (allCharRegExp.test(text)) {
                        console.log("Valid Text");
        }
        else {
            console.log("Invalid Text");
        }
    }

I tested this function but the function itself is invalid.