Type the result of the following snippet of code:
Use a space as a divider for rows.
const fruit = "apple";
switch (fruit) {
case "orange":
console.log("$5");
console.log("per kg")
break;
case "apple":
console.log("$0.5");
console.log("for a piece")
default:
console.log("$2")
break;
}