⟩ What is the key problem with the following line of code?
Code:
aThing = {type:"Monster", teeth:250, bloodtype:K, getName:function(){return this.bloodtype;}};
A. It will return an error.
B. .It wastes memory
C. The object will go out of scope as soon as it executes
D. The syntax will become difficult to read as additional complexity is added.