Suppose that you have the following declaration.
enum cars {FORD, GM, TOYOTA, HONDA};
cars domesticCars = FORD;
The statement:
domesticCars = static_cast(domesticCars + 1);
sets the value of domestiCars to _________.