Which one of the following statements declares a variable named fox that references an instance of the Animal class?
a. new Animal fox();
b. Animal fox = new Animal();
c. Animal fox;
d. Animal new(fox);