I need a sample regular expression to test in Javascript - input starts with one number between 1 to 16 and is followed by 1 letter between A to E only. eg 2B, 8D, 11E, 16A
I have this regex ^([1-9]|[0-1][0-6])[A-E]$ but unable to get appropriate result.
Thank you for your time.

^(?:[1-9]|1[0-6])[A-E]$(?:1[0-6]|[1-9])[A-E]... your current pattern is only slightly off