in task 103 creating circle length function it gives me a error saying
- Implement a function circleLength that calculates the length of the circle given its radius
this is the code in solution.js
/**
- Implement a function circleLength that calculates the length of the circle given its radius
- */
import { circleLength } from './helper.js';
console.log(circleLength(5));
console.log(circleLength(12));
and this is the code in helper.js
const PI = 3.14159265359;
export const circleLength = (radius) => {
return PI * 4 / radius;
}
when ran the code it gave me values so what is the problem