const PlacementString = (placementInt: number | string) => {
const PlacementStr: string = typeof placementInt === `string` ? placementInt : placementInt.toString()
if (PlacementStr.match(/\d+/g) === null) return '❌ You cannot include characters'
if (PlacementStr.endsWith('1')) return `${placementInt}st`
else if (PlacementStr.endsWith('2')) return `${placementInt}nd`
else if (PlacementStr.endsWith('3')) return `${placementInt}rd`
else return `${PlacementStr}th`
}