I'm currently working on a regex pattern for validating addresses and I seem to be encountering an issue. Even though my pattern looks correct, the test method does not return true. Can someone help spot what may be wrong with my code snippet below?
let reg=/[0-9]{3}\b[a-z]{1}\b\d{2}[a-z]{2}\b[a-z]{2}\b[a-z}{6}\b[a-z]{10}\b[0-9]{5}/;
let fakeAddress="925 s 10th st tacoma washington 98405";
reg.test(fakeAddress);