Mixed Messages: Football Player Stats

Wasn’t sure how to create a link, I also couldn’t upload it so a just copyed and pasted it below :), Other the fact that I should have add the arrays to an object, is there anything I could have done to improve it next time??
The Project was easy!
Probably an hour because of a funny bug
Code is below:

const Teams = ["Los Angelos Tornado", "Montreal Tigers", "Toronto Strongmen", "Oakville Bears", "Washington Fighters"];
const Positions = ["Wide Receiver", "Quarter Back", "Running Back", "Offensive Linemen", "Defensive Linemen"];
const JerseyName = ["Newman", "Jackson", "Brady", "Rogan", "Obama"];

const num = Math.round(Math.random() * 98 + 1)
const nameNum = Math.round(Math.random() * 4)
const positionNum = Math.round(Math.random() * 4)
const teamNum = Math.round(Math.random() * 4)

console.log("His jersey wore " +num+ " and the name " +JerseyName[nameNum]+ ".");
console.log("The legend played " +Positions[positionNum]+ " while winning champonships with "+Teams[teamNum]+".");


Well done, friend! Your code looks simple and clean. May I suggest using string interpolation instead of string concatenation? For example, the line

console.log("His jersey wore " +num+ " and the name " +JerseyName[nameNum]+ ".");

could be refactored to

console.log("His jersey wore ${num} and the name ${JerseyName[nameNum]}.");