using UnityEngine;
public class RandomColorChange : MonoBehaviour
{
private Material material;
private void Start()
{
material = GetComponent<Renderer>().material;
}
private void Update()
{
if (Input.GetKeyDown(KeyCode.C))
{
material.color = Random.ColorHSV();
}
}
}

Analyst studies emerging trends in the information technology.