function alphabetPosition(text) {
 return /[a-z]/ig.test(text) ? text.toLowerCase().match(/[a-z]/g).map((letter) => letter.charCodeAt(letter) - 96).join(' ') : ""
}