Typo

I am currently working on the Full Stack Engineer Course.
I have just completed the credit card checker project (difficult) but did it.
(still find it difficult to post my gists)
I just opened the DNA project (JavaScript) and noticed there is a typo.
‘stand’ should be strand

// Returns a random DNA base
const returnRandBase = () => {
const dnaBases = [‘A’, ‘T’, ‘C’, ‘G’]
return dnaBases[Math.floor(Math.random() * 4)]
}

// Returns a random single stand of DNA containing 15 bases <------ TYPO HERE
const mockUpStrand = () => {
const newStrand =
for (let i = 0; i < 15; i++) {
newStrand.push(returnRandBase())
}
return newStrand
}