1. Assign re with a regular expression that matches an email address ending in com. Ex: example@example.com
var re /* Your solution goes here */;
2. Assign re with a regular expression that verifies a phone number with an optional leading 1. Ex: 1-800-555-2468 or 800-555-2468.
var re /* Your solution goes here */;