What will be the output of the following code?
const fruit = 'Apple';
let color = '';
switch (fruit) {
case 'Apple':
color = 'Red';
break;
case 'Banana':
color = 'Yellow';
break;
case 'Orange':
color = 'Orange';
break;
default:
color = 'Unknown';
}
console.log(color);