```javascript //FROM let basePrice = anOrder.basePrice; return (basePrice > 1000); //TO return anOrder.basePrice > 1000; ```