⟩ Assuming myVar equals "fish", what will be treced by the following code block?
Code:
switch(myVar){
case "cat": trace("cat");
case "fish": trace("fish");
case "bird": trace("cat");
default: trace("default");
}
A. "fish"
B. "fish"
C. "fish default"
D. "fish bird default"