Let's say I have this value 'BERNY564567JH89E'. How would I split the value into different strings, after the 11th character, which in this case would be 7. So for example, in the end I would have the following returned:
const orignalValue = "BERNY564567JH89E"
const splitValueOne = "BERNY564567"
const splitValueTwo = "JH89E"