const accountInfo = await connection.getAccountInfo(publicKey);
if (accountInfo) {
const data = accountInfo.data;
// Deserialize using borsh or anchor
}
With Anchor:
const course = await program.account.course.fetch(coursePda);
console.log(course.courseId, course.lessonCount);