// Setup
var outerWear = "T-Shirt";
function myOutfit() {
// Only change code below this line
function myOutfit() {
var outerWear = "sweater";
return outerWear;
}
// Only change code above this line
return outerWear;
}
myOutfit();
Hi!
I know it says to only change the code within the two comments, but perhaps take a look just outside those comments. It seems that you have repeated some code?