How do i make it so the function will take in the param (breed) and search the uppercase letter and add a space there.
for example if i pass "goldenRetriever" as the param, then the function will transform it into "golden retriever"
function test(breed){
for(i=1; i<breed.length; i++){
//wat do i do here
}
}