in functions code, 'fahrenheitToCelius' should be 'fahrenheitToCelsius'. /** * Consumes a single temperature in Fahrenheit (a number) and converts to Celsius * using this formula: * C = (F - 32) * 5/9 */ export function fahrenheitToCelius(temperature: number): number { return ((temperature - 32) * 5) / 9; }