freeCodeCamp Challenge Guide: Generate Random Fractions with JavaScript

this code is work, but I want to feedback about this code

function randomFraction() {

// Only change code below this line.
var random = Math.random();
return random;

// Only change code above this line.
}

5 Likes