How do i access the full course array

the code below gives me the first course array.
<div class="form-group" v-show="school === 'SOSE'">
<label for="course">Course</label>
<select class="form-control" name="course" v-model="course">
<option v-for="(result, index) in response" :value="result.course[0].initial">{{result.course[0].name}}</option>
</select>
</div>
if i use the index, course becomes undefined. How do i get values in both arrays.
Code for fetching data.
created() {
axios.get(`https://${location.host}/admin/getSchool`)
.then(resp => {
this.response = resp.data;
console.log(this.response);
})
.catch(err => {
this.errors.push(err);
})
},