The character [ and character ] are used to specify a range of values.
SELECT * FROM Person.EmailAddress WHERE EmailAddress LIKE 'ken[0-9]%'
If you use a query like below it will fail to return data:
SELECT * FROM Person.EmailAddress WHERE EmailAddress LIKE 'ken[%';
If you enclose the character [ between [ ] it should work you can also use ESCAPE as explained on the article.
SELECT * FROM Person.EmailAddress WHERE EmailAddress LIKE 'ken[[]%';
The behavior is explained the article here.