Try Answer

Topic: Jit-TypeScript

Lesson: Index

Try This example answer: this is one acceptable completed solution, not the only possible solution.

let name: string = "Maya";
let age: number = 12;

console.log(name, age);

// Safe change: Index practice

Explanation: it uses the lesson pattern, changes one clear value, and keeps the result simple enough to test.